pub enum IterableKind {
IntRange {
min: Box<Expression>,
max: Box<Expression>,
is_inclusive: bool,
},
VecOrArray {
array_expression: Box<Expression>,
},
}
Variants§
Trait Implementations§
Source§impl Clone for IterableKind
impl Clone for IterableKind
Source§fn clone(&self) -> IterableKind
fn clone(&self) -> IterableKind
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 IterableKind
impl RefUnwindSafe for IterableKind
impl !Send for IterableKind
impl !Sync for IterableKind
impl Unpin for IterableKind
impl UnwindSafe for IterableKind
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