BuiltinEnums

Struct BuiltinEnums 

Source
pub struct BuiltinEnums {
Show 30 fields pub TextHorizontalAlignment: Rc<Enumeration>, pub TextVerticalAlignment: Rc<Enumeration>, pub TextWrap: Rc<Enumeration>, pub TextOverflow: Rc<Enumeration>, pub TextStrokeStyle: Rc<Enumeration>, pub EventResult: Rc<Enumeration>, pub FillRule: Rc<Enumeration>, pub StandardButtonKind: Rc<Enumeration>, pub DialogButtonRole: Rc<Enumeration>, pub FocusReason: Rc<Enumeration>, pub PointerEventKind: Rc<Enumeration>, pub PointerEventButton: Rc<Enumeration>, pub MouseCursor: Rc<Enumeration>, pub ImageFit: Rc<Enumeration>, pub ImageHorizontalAlignment: Rc<Enumeration>, pub ImageVerticalAlignment: Rc<Enumeration>, pub ImageRendering: Rc<Enumeration>, pub ImageTiling: Rc<Enumeration>, pub InputType: Rc<Enumeration>, pub LayoutAlignment: Rc<Enumeration>, pub PathEvent: Rc<Enumeration>, pub AccessibleRole: Rc<Enumeration>, pub SortOrder: Rc<Enumeration>, pub Orientation: Rc<Enumeration>, pub ColorScheme: Rc<Enumeration>, pub AnimationDirection: Rc<Enumeration>, pub ScrollBarPolicy: Rc<Enumeration>, pub PopupClosePolicy: Rc<Enumeration>, pub LineCap: Rc<Enumeration>, pub OperatingSystemType: Rc<Enumeration>,
}

Fields§

§TextHorizontalAlignment: Rc<Enumeration>§TextVerticalAlignment: Rc<Enumeration>§TextWrap: Rc<Enumeration>§TextOverflow: Rc<Enumeration>§TextStrokeStyle: Rc<Enumeration>§EventResult: Rc<Enumeration>§FillRule: Rc<Enumeration>§StandardButtonKind: Rc<Enumeration>§DialogButtonRole: Rc<Enumeration>§FocusReason: Rc<Enumeration>§PointerEventKind: Rc<Enumeration>§PointerEventButton: Rc<Enumeration>§MouseCursor: Rc<Enumeration>§ImageFit: Rc<Enumeration>§ImageHorizontalAlignment: Rc<Enumeration>§ImageVerticalAlignment: Rc<Enumeration>§ImageRendering: Rc<Enumeration>§ImageTiling: Rc<Enumeration>§InputType: Rc<Enumeration>§LayoutAlignment: Rc<Enumeration>§PathEvent: Rc<Enumeration>§AccessibleRole: Rc<Enumeration>§SortOrder: Rc<Enumeration>§Orientation: Rc<Enumeration>§ColorScheme: Rc<Enumeration>§AnimationDirection: Rc<Enumeration>§ScrollBarPolicy: Rc<Enumeration>§PopupClosePolicy: Rc<Enumeration>§LineCap: Rc<Enumeration>§OperatingSystemType: Rc<Enumeration>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,