pub struct Mutex<T: ?Sized> {
lock: Lock,
owner_cpu: AtomicI64,
data: UnsafeCell<T>,
}
Fields§
§lock: Lock
§owner_cpu: AtomicI64
§data: UnsafeCell<T>
Implementations§
source§impl<T: ?Sized> Mutex<T>
impl<T: ?Sized> Mutex<T>
pub fn lock(&self) -> MutexGuard<'_, T>
pub fn try_lock(&self) -> Option<MutexGuard<'_, T>>
sourcepub fn run_with<'a, R>(&'a self, f: impl FnOnce(&'a T) -> R) -> R
pub fn run_with<'a, R>(&'a self, f: impl FnOnce(&'a T) -> R) -> R
A special method to allow accessing the variable inside the lock after locking it.
The difference between this and using Deref
is that
the lifetime of the returned reference is tied to main value of the lock.
sourcepub fn run_with_mut<'a, R>(&'a self, f: impl FnOnce(&'a mut T) -> R) -> R
pub fn run_with_mut<'a, R>(&'a self, f: impl FnOnce(&'a mut T) -> R) -> R
A special method to allow accessing the variable inside the lock after locking it.
The difference between this and using DerefMut
is that
the lifetime of the returned reference is tied to main value of the lock.
Trait Implementations§
source§impl ClockDevice for Mutex<Hpet>
impl ClockDevice for Mutex<Hpet>
source§fn get_time(&self) -> ClockTime
fn get_time(&self) -> ClockTime
Returns the current time of the device with no relation to anything
The system will use consecutive calls to determine the time
source§fn granularity(&self) -> u64
fn granularity(&self) -> u64
Returns the granularity of the device in nanoseconds, i.e. the smallest time unit it can measure
Must be at least 1
source§fn require_calibration(&self) -> bool
fn require_calibration(&self) -> bool
Returns true if the device needs to be calibration
i.e. it doesn’t count time correctly
source§impl FileSystem for Mutex<FatFilesystem>
impl FileSystem for Mutex<FatFilesystem>
source§fn open_root(&self) -> Result<DirectoryNode, FileSystemError>
fn open_root(&self) -> Result<DirectoryNode, FileSystemError>
Open the root directory of the filesystem
source§fn read_dir(
&self,
inode: &DirectoryNode,
handler: &mut dyn FnMut(Node) -> DirTreverse
) -> Result<(), FileSystemError>
fn read_dir( &self, inode: &DirectoryNode, handler: &mut dyn FnMut(Node) -> DirTreverse ) -> Result<(), FileSystemError>
Read the directory entries in the
inode
, and call the handler for each entry
The handler
should return DirTreverse::Stop
to stop the traversalsource§fn treverse_dir(
&self,
inode: &DirectoryNode,
matcher: &str
) -> Result<Node, FileSystemError>
fn treverse_dir( &self, inode: &DirectoryNode, matcher: &str ) -> Result<Node, FileSystemError>
Traverse the directory in the
inode
and return the entry with the name matcher
Most of the time, no need to implement this, as it is already implemented in the default
using FileSystem::read_dir
source§fn create_node(
&self,
parent: &DirectoryNode,
name: &str,
attributes: FileAttributes
) -> Result<Node, FileSystemError>
fn create_node( &self, parent: &DirectoryNode, name: &str, attributes: FileAttributes ) -> Result<Node, FileSystemError>
Create a new entry in the
parent
directory with the name
and attributes
This could be a file or a directory, the attributes
should specify the typesource§fn read_file(
&self,
inode: &FileNode,
position: u64,
buf: &mut [u8],
access_helper: &mut AccessHelper
) -> Result<u64, FileSystemError>
fn read_file( &self, inode: &FileNode, position: u64, buf: &mut [u8], access_helper: &mut AccessHelper ) -> Result<u64, FileSystemError>
Read the file in the
inode
at the position
and put the data in buf
The access_helper
is used to store some extra metadata to help the filesystem
manage the caches or any extra data it needs.source§fn write_file(
&self,
inode: &mut FileNode,
position: u64,
buf: &[u8],
access_helper: &mut AccessHelper
) -> Result<u64, FileSystemError>
fn write_file( &self, inode: &mut FileNode, position: u64, buf: &[u8], access_helper: &mut AccessHelper ) -> Result<u64, FileSystemError>
Write the file in the
inode
at the position
with the data in buf
The access_helper
is used to store some extra metadata to help the filesystem
manage the caches or any extra data it needs.source§fn flush_file(
&self,
inode: &mut FileNode,
access_helper: &mut AccessHelper
) -> Result<(), FileSystemError>
fn flush_file( &self, inode: &mut FileNode, access_helper: &mut AccessHelper ) -> Result<(), FileSystemError>
Tells the filesystem to flush the content of this file to disk or to the backing store
if it needs to
source§fn close_file(
&self,
inode: &FileNode,
access_helper: AccessHelper
) -> Result<(), FileSystemError>
fn close_file( &self, inode: &FileNode, access_helper: AccessHelper ) -> Result<(), FileSystemError>
Close the file in the
inode
, this is called when the file is dropped
The access_helper
is used to store some extra metadata to help the filesystem
manage the caches or any extra data it needs.source§fn set_file_size(
&self,
inode: &mut FileNode,
size: u64
) -> Result<(), FileSystemError>
fn set_file_size( &self, inode: &mut FileNode, size: u64 ) -> Result<(), FileSystemError>
Set the size of the file in the
inode
to size
, this is used to truncate the file
or to extend itsource§fn unmount(self: Arc<Self>)
fn unmount(self: Arc<Self>)
Unmount the filesystem, this is called before the filesystem is dropped
The reason we use this is that we can’t force
Drop
to be implemented
for Arc<dyn FileSystem>
, so we have this insteadsource§fn number_global_refs(&self) -> usize
fn number_global_refs(&self) -> usize
The expected number of strong refs in
Arc
by default
This is used to check if the filesystem is still in use before unmounting
This is here because for some filesystems, it could be stored globally in some Mutex
like /devices
this reference should not be counted to know if its still in useimpl<T: ?Sized + Send> Send for Mutex<T>
impl<T: ?Sized + Send> Sync for Mutex<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Mutex<T>
impl<T: ?Sized> Unpin for Mutex<T>where
T: Unpin,
impl<T: ?Sized> UnwindSafe for Mutex<T>where
T: UnwindSafe,
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> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
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> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.