enum Gate<'a> {
Wire(&'a str),
Not(&'a str),
And(&'a str, &'a str),
Or(&'a str, &'a str),
LeftShift(&'a str, u16),
RightShift(&'a str, u16),
}
Variants§
Wire(&'a str)
Not(&'a str)
And(&'a str, &'a str)
Or(&'a str, &'a str)
LeftShift(&'a str, u16)
RightShift(&'a str, u16)
Auto Trait Implementations§
impl<'a> Freeze for Gate<'a>
impl<'a> RefUnwindSafe for Gate<'a>
impl<'a> Send for Gate<'a>
impl<'a> Sync for Gate<'a>
impl<'a> Unpin for Gate<'a>
impl<'a> UnwindSafe for Gate<'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