pub enum XMark {
Mark0,
Mark1,
Mark2,
}Expand description
The mark type used in the XArray.
The XArray itself and an item in it can have up to three different marks.
Users can use a self-defined type to distinguish which kind of mark they want to set. Such a
type must implement the Into<XMark> trait.
Variants§
Auto Trait Implementations§
impl Freeze for XMark
impl RefUnwindSafe for XMark
impl Send for XMark
impl Sync for XMark
impl Unpin for XMark
impl UnsafeUnpin for XMark
impl UnwindSafe for XMark
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