pub enum ICategoryKind<'a> {
Category(&'a CategoryNode),
}
Variants§
Category(&'a CategoryNode)
Trait Implementations§
Source§impl<'a> Clone for ICategoryKind<'a>
impl<'a> Clone for ICategoryKind<'a>
Source§fn clone(&self) -> ICategoryKind<'a>
fn clone(&self) -> ICategoryKind<'a>
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> Debug for ICategoryKind<'a>
impl<'a> Debug for ICategoryKind<'a>
Source§impl<'a> ICategory for ICategoryKind<'a>
impl<'a> ICategory for ICategoryKind<'a>
impl<'a> Copy for ICategoryKind<'a>
Auto Trait Implementations§
impl<'a> Freeze for ICategoryKind<'a>
impl<'a> RefUnwindSafe for ICategoryKind<'a>
impl<'a> Send for ICategoryKind<'a>
impl<'a> Sync for ICategoryKind<'a>
impl<'a> Unpin for ICategoryKind<'a>
impl<'a> UnwindSafe for ICategoryKind<'a>
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