[][src]Struct iced_winit::Proxy

pub struct Proxy<Message: 'static> { /* fields omitted */ }

An event loop proxy that implements Sink.

Implementations

impl<Message: 'static> Proxy<Message>[src]

pub fn new(raw: EventLoopProxy<Message>) -> Self[src]

Creates a new Proxy from an EventLoopProxy.

Trait Implementations

impl<Message: 'static> Clone for Proxy<Message>[src]

impl<Message: Debug + 'static> Debug for Proxy<Message>[src]

impl<Message: 'static> Sink<Message> for Proxy<Message>[src]

type Error = SendError

The type of value produced by the sink when an error occurs.

Auto Trait Implementations

impl<Message> !RefUnwindSafe for Proxy<Message>

impl<Message> Send for Proxy<Message> where
    Message: Send

impl<Message> !Sync for Proxy<Message>

impl<Message> Unpin for Proxy<Message>

impl<Message> !UnwindSafe for Proxy<Message>

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Item> SinkExt<Item> for T where
    T: Sink<Item> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,