pub enum PaneNodeKind {
Leaf(PaneLeaf),
Split(PaneSplit),
}Expand description
Node payload variant.
Variants§
Trait Implementations§
Source§impl Clone for PaneNodeKind
impl Clone for PaneNodeKind
Source§fn clone(&self) -> PaneNodeKind
fn clone(&self) -> PaneNodeKind
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 PaneNodeKind
impl Debug for PaneNodeKind
Source§impl<'de> Deserialize<'de> for PaneNodeKind
impl<'de> Deserialize<'de> for PaneNodeKind
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 PaneNodeKind
impl PartialEq for PaneNodeKind
Source§impl Serialize for PaneNodeKind
impl Serialize for PaneNodeKind
impl Eq for PaneNodeKind
impl StructuralPartialEq for PaneNodeKind
Auto Trait Implementations§
impl Freeze for PaneNodeKind
impl RefUnwindSafe for PaneNodeKind
impl Send for PaneNodeKind
impl Sync for PaneNodeKind
impl Unpin for PaneNodeKind
impl UnsafeUnpin for PaneNodeKind
impl UnwindSafe for PaneNodeKind
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