#[repr(C)]pub struct FuseInHeader {
pub len: u32,
pub opcode: u32,
pub unique: u64,
pub nodeid: u64,
pub uid: u32,
pub gid: u32,
pub pid: u32,
pub padding: u32,
}Expand description
FUSE request header.
Fields§
§len: u32Total message length.
opcode: u32Operation code.
unique: u64Unique request ID.
nodeid: u64Node ID.
uid: u32User ID.
gid: u32Group ID.
pid: u32Process ID.
padding: u32Padding.
Implementations§
Trait Implementations§
Source§impl Clone for FuseInHeader
impl Clone for FuseInHeader
Source§fn clone(&self) -> FuseInHeader
fn clone(&self) -> FuseInHeader
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FuseInHeader
Source§impl Debug for FuseInHeader
impl Debug for FuseInHeader
Source§impl From<&FuseInHeader> for RequestContext
impl From<&FuseInHeader> for RequestContext
Source§fn from(header: &FuseInHeader) -> Self
fn from(header: &FuseInHeader) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FuseInHeader
impl RefUnwindSafe for FuseInHeader
impl Send for FuseInHeader
impl Sync for FuseInHeader
impl Unpin for FuseInHeader
impl UnsafeUnpin for FuseInHeader
impl UnwindSafe for FuseInHeader
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more