pub enum Edge<T> {
Open(NodeRef<T>),
Close(NodeRef<T>),
}
Expand description
Open or close edge of a node.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Edge<T>
impl<T> !RefUnwindSafe for Edge<T>
impl<T> !Send for Edge<T>
impl<T> !Sync for Edge<T>
impl<T> Unpin for Edge<T>
impl<T> !UnwindSafe for Edge<T>
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