pub enum ViewProps {
Show 25 variants
Theme(Themes),
BackgroundColor(MakepadColor),
HoverColor(MakepadColor),
FocusColor(MakepadColor),
BorderColor(MakepadColor),
BorderWidth(F32),
BorderRadius(F32),
Visible(bool),
BackgroundVisible(bool),
ShadowColor(MakepadColor),
SpreadRadius(F32),
BlurRadius(F32),
ShadowOffset(Vec2),
Cursor(MouseCursor),
AnimationKey(bool),
GrabKeyFocus(bool),
BlockSignalEvent(bool),
Walk(Walk),
Layout(Layout),
EventOrder(EventOrder),
DpiFactor(F64),
Optimize(ViewOptimize),
CaptureOverload(bool),
EventKey(bool),
BlockChildEvents(bool),
}Variants§
Theme(Themes)
BackgroundColor(MakepadColor)
HoverColor(MakepadColor)
FocusColor(MakepadColor)
BorderColor(MakepadColor)
BorderWidth(F32)
BorderRadius(F32)
Visible(bool)
BackgroundVisible(bool)
ShadowColor(MakepadColor)
SpreadRadius(F32)
BlurRadius(F32)
ShadowOffset(Vec2)
Cursor(MouseCursor)
AnimationKey(bool)
GrabKeyFocus(bool)
BlockSignalEvent(bool)
Walk(Walk)
Layout(Layout)
EventOrder(EventOrder)
DpiFactor(F64)
Optimize(ViewOptimize)
CaptureOverload(bool)
EventKey(bool)
BlockChildEvents(bool)
Implementations§
Trait Implementations§
Source§impl ToTokens for Props
impl ToTokens for Props
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl Freeze for Props
impl RefUnwindSafe for Props
impl Send for Props
impl Sync for Props
impl Unpin for Props
impl UnsafeUnpin for Props
impl UnwindSafe for Props
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> Spanned for Twhere
T: Spanned + ?Sized,
impl<T> Spanned for Twhere
T: Spanned + ?Sized,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty.