#[repr(u8)]pub enum FstArrayType {
None = 0,
Unpacked = 1,
Packed = 2,
Sparse = 3,
}Variants§
Trait Implementations§
Source§impl Clone for FstArrayType
impl Clone for FstArrayType
Source§fn clone(&self) -> FstArrayType
fn clone(&self) -> FstArrayType
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 Debug for FstArrayType
impl Debug for FstArrayType
Source§impl PartialEq for FstArrayType
impl PartialEq for FstArrayType
Source§impl TryFrom<u8> for FstArrayType
impl TryFrom<u8> for FstArrayType
Source§type Error = TryFromPrimitiveError<FstArrayType>
type Error = TryFromPrimitiveError<FstArrayType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for FstArrayType
impl TryFromPrimitive for FstArrayType
const NAME: &'static str = "FstArrayType"
type Primitive = u8
type Error = TryFromPrimitiveError<FstArrayType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for FstArrayType
impl StructuralPartialEq for FstArrayType
Auto Trait Implementations§
impl Freeze for FstArrayType
impl RefUnwindSafe for FstArrayType
impl Send for FstArrayType
impl Sync for FstArrayType
impl Unpin for FstArrayType
impl UnsafeUnpin for FstArrayType
impl UnwindSafe for FstArrayType
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