pub struct UiNode {
pub id: UiNodeId,
pub enabled: bool,
pub kind: UiNodeKind,
}Expand description
A typed node in a flat semantic UI document.
Fields§
§id: UiNodeIdIdentifier unique within the containing document.
enabled: boolWhether the node accepts focus and input.
kind: UiNodeKindTyped semantic role and values.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UiNode
impl<'de> Deserialize<'de> for UiNode
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
impl StructuralPartialEq for UiNode
Auto Trait Implementations§
impl Freeze for UiNode
impl RefUnwindSafe for UiNode
impl Send for UiNode
impl Sync for UiNode
impl Unpin for UiNode
impl UnsafeUnpin for UiNode
impl UnwindSafe for UiNode
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