pub enum AllocKind {
Alloc,
Alloc1,
}
Expand description
Flags passed to XArray::new
to configure the array’s allocation tracking behavior.
Variants§
Alloc
Consider the first element to be at index 0.
Alloc1
Consider the first element to be at index 1.
Auto Trait Implementations§
impl Freeze for AllocKind
impl RefUnwindSafe for AllocKind
impl Send for AllocKind
impl Sync for AllocKind
impl Unpin for AllocKind
impl UnwindSafe for AllocKind
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