pub enum UiNodeAttributes {
Input(Box<UiNodeInputAttributes>),
Text(Box<UiNodeTextAttributes>),
Img(Box<UiNodeImageAttributes>),
A(Box<UiNodeAnchorAttributes>),
Script(Box<UiNodeScriptAttributes>),
Div(Box<UiNodeDivisionAttributes>),
}Variants§
Input(Box<UiNodeInputAttributes>)
Text(Box<UiNodeTextAttributes>)
Img(Box<UiNodeImageAttributes>)
A(Box<UiNodeAnchorAttributes>)
Script(Box<UiNodeScriptAttributes>)
Div(Box<UiNodeDivisionAttributes>)
Trait Implementations§
Source§impl Clone for UiNodeAttributes
impl Clone for UiNodeAttributes
Source§fn clone(&self) -> UiNodeAttributes
fn clone(&self) -> UiNodeAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UiNodeAttributes
impl Debug for UiNodeAttributes
Source§impl Default for UiNodeAttributes
impl Default for UiNodeAttributes
Source§impl<'de> Deserialize<'de> for UiNodeAttributes
impl<'de> Deserialize<'de> for UiNodeAttributes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UiNodeAttributes
impl PartialEq for UiNodeAttributes
Source§impl Serialize for UiNodeAttributes
impl Serialize for UiNodeAttributes
impl StructuralPartialEq for UiNodeAttributes
Auto Trait Implementations§
impl Freeze for UiNodeAttributes
impl RefUnwindSafe for UiNodeAttributes
impl Send for UiNodeAttributes
impl Sync for UiNodeAttributes
impl Unpin for UiNodeAttributes
impl UnwindSafe for UiNodeAttributes
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