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