#[non_exhaustive]#[repr(u32)]pub enum fuse_ext_type {
FUSE_MAX_NR_SECCTX = 31,
FUSE_EXT_GROUPS = 32,
}
Expand description
extension type FUSE_MAX_NR_SECCTX: maximum value of &fuse_secctx_header.nr_secctx FUSE_EXT_GROUPS: &fuse_supp_groups extension
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for fuse_ext_type
impl Clone for fuse_ext_type
Source§fn clone(&self) -> fuse_ext_type
fn clone(&self) -> fuse_ext_type
Returns a copy 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 fuse_ext_type
impl Debug for fuse_ext_type
Source§impl From<fuse_ext_type> for u32
impl From<fuse_ext_type> for u32
Source§fn from(enum_value: fuse_ext_type) -> Self
fn from(enum_value: fuse_ext_type) -> Self
Converts to this type from the input type.
Source§impl Hash for fuse_ext_type
impl Hash for fuse_ext_type
Source§impl PartialEq for fuse_ext_type
impl PartialEq for fuse_ext_type
Source§impl TryFrom<u32> for fuse_ext_type
impl TryFrom<u32> for fuse_ext_type
Source§type Error = TryFromPrimitiveError<fuse_ext_type>
type Error = TryFromPrimitiveError<fuse_ext_type>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for fuse_ext_type
impl TryFromPrimitive for fuse_ext_type
const NAME: &'static str = "fuse_ext_type"
type Primitive = u32
type Error = TryFromPrimitiveError<fuse_ext_type>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Source§impl UnsafeFromPrimitive for fuse_ext_type
impl UnsafeFromPrimitive for fuse_ext_type
type Primitive = u32
Source§unsafe fn unchecked_transmute_from(number: Self::Primitive) -> Self
unsafe fn unchecked_transmute_from(number: Self::Primitive) -> Self
Transmutes into an enum from its primitive. Read more
Source§unsafe fn from_unchecked(number: Self::Primitive) -> Self
unsafe fn from_unchecked(number: Self::Primitive) -> Self
👎Deprecated since 0.6.0: Prefer to use
unchecked_transmute_from
, from_unchecked
will be removed in a future release.Transmutes into an enum from its primitive. Read more
impl Copy for fuse_ext_type
impl Eq for fuse_ext_type
impl StructuralPartialEq for fuse_ext_type
Auto Trait Implementations§
impl Freeze for fuse_ext_type
impl RefUnwindSafe for fuse_ext_type
impl Send for fuse_ext_type
impl Sync for fuse_ext_type
impl Unpin for fuse_ext_type
impl UnwindSafe for fuse_ext_type
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