pub struct Array<T> {
pub initializer: Box<Expression<T>>,
pub size: Integer<()>,
pub position: Position,
pub info: T,
}
Fields§
§initializer: Box<Expression<T>>
§size: Integer<()>
§position: Position
§info: T
Implementations§
Trait Implementations§
Source§impl<T: Ord> Ord for Array<T>
impl<T: Ord> Ord for Array<T>
Source§impl<T: PartialOrd> PartialOrd for Array<T>
impl<T: PartialOrd> PartialOrd for Array<T>
impl<T: Eq> Eq for Array<T>
impl<T> StructuralPartialEq for Array<T>
Auto Trait Implementations§
impl<T> Freeze for Array<T>where
T: Freeze,
impl<T> RefUnwindSafe for Array<T>where
T: RefUnwindSafe,
impl<T> Send for Array<T>where
T: Send,
impl<T> Sync for Array<T>where
T: Sync,
impl<T> Unpin for Array<T>where
T: Unpin,
impl<T> UnwindSafe for Array<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