pub struct RwLock<T: ?Sized> {
lock: Lock,
owner_cpu: AtomicI64,
data: UnsafeCell<T>,
}
Fields§
§lock: Lock
§owner_cpu: AtomicI64
§data: UnsafeCell<T>
Implementations§
source§impl<T: ?Sized> RwLock<T>
impl<T: ?Sized> RwLock<T>
pub fn read(&self) -> RwLockReadGuard<'_, T>
pub fn try_read(&self) -> Option<RwLockReadGuard<'_, T>>
pub fn write(&self) -> RwLockWriteGuard<'_, T>
pub fn try_write(&self) -> Option<RwLockWriteGuard<'_, T>>
Trait Implementations§
source§impl FileSystem for RwLock<Devices>
impl FileSystem for RwLock<Devices>
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 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 usesource§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 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 itimpl<T: ?Sized + Send> Send for RwLock<T>
impl<T: ?Sized + Send + Sync> Sync for RwLock<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for RwLock<T>
impl<T: ?Sized> Unpin for RwLock<T>where
T: Unpin,
impl<T: ?Sized> UnwindSafe for RwLock<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.