[][src]Struct embedded_layout::layout::ViewLink

pub struct ViewLink<V: View, C: ViewChainElement> { /* fields omitted */ }

Chain element that can store a View in a ViewGroup

You probably shouldn't ever use this struct

Trait Implementations

impl<'a, C, V, VC> Drawable<C> for &'a ViewLink<V, VC> where
    C: PixelColor,
    V: View,
    &'a V: Drawable<C>,
    VC: ViewChainElement,
    &'a VC: Drawable<C>, 
[src]

impl<V: View, C: ViewChainElement> View for ViewLink<V, C>[src]

impl<V: View, VC: ViewChainElement> ViewChainElement for ViewLink<V, VC>[src]

Auto Trait Implementations

impl<V, C> RefUnwindSafe for ViewLink<V, C> where
    C: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, C> Send for ViewLink<V, C> where
    C: Send,
    V: Send

impl<V, C> Sync for ViewLink<V, C> where
    C: Sync,
    V: Sync

impl<V, C> Unpin for ViewLink<V, C> where
    C: Unpin,
    V: Unpin

impl<V, C> UnwindSafe for ViewLink<V, C> where
    C: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

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> From<T> for T[src]

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

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<T> View for T where
    T: Transform + Dimensions
[src]