pub enum NetLvalue<'a> {
Selection(Box<SelectionNetLvalue<'a>>),
Nested(Box<NestedNetLvalue<'a>>),
Assignment(Box<AssignmentNetLvalue<'a>>),
}Variants§
Selection(Box<SelectionNetLvalue<'a>>)
Nested(Box<NestedNetLvalue<'a>>)
Assignment(Box<AssignmentNetLvalue<'a>>)
Implementations§
Trait Implementations§
Source§impl<'a: 'b, 'b> IntoIterator for &'b NetLvalue<'a>
impl<'a: 'b, 'b> IntoIterator for &'b NetLvalue<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for NetLvalue<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for NetLvalue<'a>
impl<'a> StructuralPartialEq for NetLvalue<'a>
Auto Trait Implementations§
impl<'a> Freeze for NetLvalue<'a>
impl<'a> RefUnwindSafe for NetLvalue<'a>
impl<'a> Send for NetLvalue<'a>
impl<'a> Sync for NetLvalue<'a>
impl<'a> Unpin for NetLvalue<'a>
impl<'a> UnsafeUnpin for NetLvalue<'a>
impl<'a> UnwindSafe for NetLvalue<'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