Enum move_compiler::expansion::ast::SequenceItem_
source · [−]pub enum SequenceItem_ {
Seq(Exp),
Declare(LValueList, Option<Type>),
Bind(LValueList, Exp),
}
Variants
Seq(Exp)
Declare(LValueList, Option<Type>)
Bind(LValueList, Exp)
Trait Implementations
sourceimpl Clone for SequenceItem_
impl Clone for SequenceItem_
sourcefn clone(&self) -> SequenceItem_
fn clone(&self) -> SequenceItem_
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SequenceItem_
impl Debug for SequenceItem_
sourceimpl PartialEq<SequenceItem_> for SequenceItem_
impl PartialEq<SequenceItem_> for SequenceItem_
sourcefn eq(&self, other: &SequenceItem_) -> bool
fn eq(&self, other: &SequenceItem_) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SequenceItem_) -> bool
fn ne(&self, other: &SequenceItem_) -> bool
This method tests for !=
.
impl StructuralPartialEq for SequenceItem_
Auto Trait Implementations
impl RefUnwindSafe for SequenceItem_
impl Send for SequenceItem_
impl Sync for SequenceItem_
impl Unpin for SequenceItem_
impl UnwindSafe for SequenceItem_
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more