pub enum NodeBox {
Regular,
Fixed(NodeBoxFixed),
Wallmounted(NodeBoxWallmounted),
Leveled(NodeBoxLeveled),
Connected(NodeBoxConnected),
}
Variants§
Regular
Fixed(NodeBoxFixed)
Wallmounted(NodeBoxWallmounted)
Leveled(NodeBoxLeveled)
Connected(NodeBoxConnected)
Trait Implementations§
Source§impl Deserialize for NodeBox
impl Deserialize for NodeBox
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
impl StructuralPartialEq for NodeBox
Auto Trait Implementations§
impl Freeze for NodeBox
impl RefUnwindSafe for NodeBox
impl Send for NodeBox
impl Sync for NodeBox
impl Unpin for NodeBox
impl UnwindSafe for NodeBox
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