pub enum StartOfChainKind {
Expression(Box<Expression>),
Variable(VariableRef),
}
Variants§
Expression(Box<Expression>)
Variable(VariableRef)
Implementations§
Trait Implementations§
Source§impl Clone for StartOfChainKind
impl Clone for StartOfChainKind
Source§fn clone(&self) -> StartOfChainKind
fn clone(&self) -> StartOfChainKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for StartOfChainKind
impl RefUnwindSafe for StartOfChainKind
impl !Send for StartOfChainKind
impl !Sync for StartOfChainKind
impl Unpin for StartOfChainKind
impl UnwindSafe for StartOfChainKind
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