[][src]Struct polyhorn_ios::prelude::View

pub struct View<P, H> where
    H: ViewHandle + 'static,
    P: Platform + ?Sized
{ pub style: ViewStyle, pub on_pointer_cancel: EventListener<()>, pub on_pointer_down: EventListener<()>, pub on_pointer_up: EventListener<()>, pub on_layout: EventListener<Size<f32>>, pub reference: Option<WeakReference<P, Option<H>>>, }

The base component.

Fields

style: ViewStyle

Controls the appearance and layout of a View.

on_pointer_cancel: EventListener<()>

Called when the user cancels pressing a View.

on_pointer_down: EventListener<()>

Called when the user starts pressing a View.

on_pointer_up: EventListener<()>

Called when the user stops pressing a View.

on_layout: EventListener<Size<f32>>

Called when a View is layed out.

reference: Option<WeakReference<P, Option<H>>>

This is a reference to an imperative view handle that can be used to measure the dimensions of this view or schedule animations.

Trait Implementations

impl<P, H> Default for View<P, H> where
    H: ViewHandle,
    P: Platform + ?Sized
[src]

impl<P, H> Imperative for View<P, H> where
    H: ViewHandle,
    P: Platform + ?Sized
[src]

type Handle = H

This is the handle of this imperative type.

Auto Trait Implementations

impl<P, H> !RefUnwindSafe for View<P, H>

impl<P, H> !Send for View<P, H>

impl<P, H> !Sync for View<P, H>

impl<P: ?Sized, H> Unpin for View<P, H> where
    H: Unpin

impl<P, H> !UnwindSafe for View<P, H>

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> AsAny for T where
    T: Any
[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, 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.