pub struct LinuxFsStruct<'a, Driver>{ /* private fields */ }
Available on crate feature
os-linux
only.Expand description
A Linux fs struct.
The fs_struct
structure is responsible for tracking filesystem-related
information for a process. Each process in Linux has a reference to an
fs_struct
, which is shared across threads within the same thread group
(i.e., threads in the same process share the same filesystem state).
§Implementation Details
Corresponds to fs_struct
.
Implementations§
Source§impl<'a, Driver> LinuxFsStruct<'a, Driver>
impl<'a, Driver> LinuxFsStruct<'a, Driver>
Trait Implementations§
Source§impl<Driver> VmiVa for LinuxFsStruct<'_, Driver>
impl<Driver> VmiVa for LinuxFsStruct<'_, Driver>
Auto Trait Implementations§
impl<'a, Driver> Freeze for LinuxFsStruct<'a, Driver>
impl<'a, Driver> !RefUnwindSafe for LinuxFsStruct<'a, Driver>
impl<'a, Driver> !Send for LinuxFsStruct<'a, Driver>
impl<'a, Driver> !Sync for LinuxFsStruct<'a, Driver>
impl<'a, Driver> Unpin for LinuxFsStruct<'a, Driver>
impl<'a, Driver> !UnwindSafe for LinuxFsStruct<'a, Driver>
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