pub enum NetKind {
Vectored,
Scalared,
None,
}
Variants§
Trait Implementations§
Source§impl<'a> AcceptVisitor<'a> for NetKind
impl<'a> AcceptVisitor<'a> for NetKind
Source§impl<'a> ForEachChild<'a> for NetKind
impl<'a> ForEachChild<'a> for NetKind
Source§fn for_each_child(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
fn for_each_child(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
Apply a function to each child node.
Source§impl<'a> ForEachNode<'a> for NetKind
impl<'a> ForEachNode<'a> for NetKind
Source§fn for_each_node(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
fn for_each_node(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
Apply a function to this node.
Source§impl<'a> WalkVisitor<'a> for NetKind
impl<'a> WalkVisitor<'a> for NetKind
impl Copy for NetKind
impl Eq for NetKind
impl StructuralPartialEq for NetKind
Auto Trait Implementations§
impl Freeze for NetKind
impl RefUnwindSafe for NetKind
impl Send for NetKind
impl Sync for NetKind
impl Unpin for NetKind
impl UnwindSafe for NetKind
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