#[repr(C)]pub enum SequenceType<'shape> {
Array(ArrayType<'shape>),
Slice(SliceType<'shape>),
}Expand description
Describes built-in sequence type (array, slice)
Variants§
Trait Implementations§
Source§impl<'shape> Clone for SequenceType<'shape>
impl<'shape> Clone for SequenceType<'shape>
Source§fn clone(&self) -> SequenceType<'shape>
fn clone(&self) -> SequenceType<'shape>
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 moreSource§impl<'shape> Debug for SequenceType<'shape>
impl<'shape> Debug for SequenceType<'shape>
impl<'shape> Copy for SequenceType<'shape>
Auto Trait Implementations§
impl<'shape> Freeze for SequenceType<'shape>
impl<'shape> RefUnwindSafe for SequenceType<'shape>
impl<'shape> Send for SequenceType<'shape>
impl<'shape> Sync for SequenceType<'shape>
impl<'shape> Unpin for SequenceType<'shape>
impl<'shape> UnwindSafe for SequenceType<'shape>
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