#[repr(C)]pub struct Seq<T: IndexableType> { /* private fields */ }Expand description
Sequences are used for indexing Arrays
Implementations§
Source§impl<T> Seq<T>where
T: Copy + IndexableType,
impl<T> Seq<T>where
T: Copy + IndexableType,
Trait Implementations§
Source§impl<T> Display for Seq<T>where
T: Display + IndexableType,
Enables use of Seq with {} format in print statements
impl<T> Display for Seq<T>where
T: Display + IndexableType,
Enables use of Seq with {} format in print statements
Source§impl<T> Indexable for Seq<T>
Enables Seq to be used to index another Array
impl<T> Indexable for Seq<T>
Enables Seq to be used to index another Array
This is used in functions index_gen and assign_gen
impl<T: Copy + IndexableType> Copy for Seq<T>
impl<T: IndexableType> StructuralPartialEq for Seq<T>
Auto Trait Implementations§
impl<T> Freeze for Seq<T>where
T: Freeze,
impl<T> RefUnwindSafe for Seq<T>where
T: RefUnwindSafe,
impl<T> Send for Seq<T>where
T: Send,
impl<T> Sync for Seq<T>where
T: Sync,
impl<T> Unpin for Seq<T>where
T: Unpin,
impl<T> UnwindSafe for Seq<T>where
T: UnwindSafe,
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