Enum raui_core::widget::component::interactive::navigation::NavScroll[][src]

pub enum NavScroll {
    Factor(Vec2bool),
    DirectFactor(WidgetIdOrRefVec2bool),
    Units(Vec2bool),
    DirectUnits(WidgetIdOrRefVec2bool),
    Widget(WidgetIdOrRefVec2),
    Change(Vec2Vec2bool),
}

Variants

Factor(Vec2bool)

(factor location, relative)

DirectFactor(WidgetIdOrRefVec2bool)

(scroll view id or ref, factor location, relative)

Units(Vec2bool)

(local space units location, relative)

DirectUnits(WidgetIdOrRefVec2bool)

(scroll view id or ref, local space units location, relative)

(id or ref, widget local space anchor point)

Change(Vec2Vec2bool)

(factor, content to container ratio, relative)

Trait Implementations

impl Clone for NavScroll[src]

impl Debug for NavScroll[src]

impl<'de> Deserialize<'de> for NavScroll[src]

impl Serialize for NavScroll[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.