pub enum NodeInt64<T> {
Variable {
name: String,
},
Negative(NodeInt64Negative<T>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for NodeInt64<T>
impl<T> RefUnwindSafe for NodeInt64<T>where
T: RefUnwindSafe,
impl<T> Send for NodeInt64<T>where
T: Send,
impl<T> Sync for NodeInt64<T>where
T: Sync,
impl<T> Unpin for NodeInt64<T>
impl<T> UnsafeUnpin for NodeInt64<T>
impl<T> UnwindSafe for NodeInt64<T>where
T: UnwindSafe,
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