pub enum DevTreeIndexItem<'a, 'i: 'a, 'dt: 'i> {
Node(DevTreeIndexNode<'a, 'i, 'dt>),
Prop(DevTreeIndexProp<'a, 'i, 'dt>),
}
Variants§
Node(DevTreeIndexNode<'a, 'i, 'dt>)
Prop(DevTreeIndexProp<'a, 'i, 'dt>)
Trait Implementations§
Source§impl<'a, 'i: 'a, 'dt: 'i> Clone for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i: 'a, 'dt: 'i> Clone for DevTreeIndexItem<'a, 'i, 'dt>
Source§fn clone(&self) -> DevTreeIndexItem<'a, 'i, 'dt>
fn clone(&self) -> DevTreeIndexItem<'a, 'i, 'dt>
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<'a, 'i: 'a, 'dt: 'i> PartialEq for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i: 'a, 'dt: 'i> PartialEq for DevTreeIndexItem<'a, 'i, 'dt>
Source§fn eq(&self, other: &DevTreeIndexItem<'a, 'i, 'dt>) -> bool
fn eq(&self, other: &DevTreeIndexItem<'a, 'i, 'dt>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a, 'i: 'a, 'dt: 'i> StructuralPartialEq for DevTreeIndexItem<'a, 'i, 'dt>
Auto Trait Implementations§
impl<'a, 'i, 'dt> Freeze for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i, 'dt> RefUnwindSafe for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i, 'dt> !Send for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i, 'dt> !Sync for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i, 'dt> Unpin for DevTreeIndexItem<'a, 'i, 'dt>
impl<'a, 'i, 'dt> UnwindSafe for DevTreeIndexItem<'a, 'i, 'dt>
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