pub enum VfsOp {
CreateFile {
parent: InodeId,
name: String,
inode: Inode,
},
CreateDir {
parent: InodeId,
name: String,
inode: Inode,
},
Delete {
parent: InodeId,
name: String,
inode: InodeId,
},
Rename {
old_parent: InodeId,
old_name: String,
new_parent: InodeId,
new_name: String,
inode: InodeId,
},
WriteBlock {
inode: InodeId,
block: BlockId,
data: Vec<u8>,
},
Truncate {
inode: InodeId,
new_size: u64,
},
UpdateInode {
inode: Inode,
},
UpdateSuperblock {
superblock: Superblock,
},
CreateSymlink {
parent: InodeId,
name: String,
inode: Inode,
target: String,
},
}Expand description
VFS operation types for WAL
Variants§
CreateFile
Create file
CreateDir
Create directory
Delete
Delete entry
Rename
Rename/move entry
WriteBlock
Write data block
Truncate
Truncate file
UpdateInode
Update inode metadata
UpdateSuperblock
Update superblock
Fields
§
superblock: SuperblockCreateSymlink
Create symlink
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VfsOp
impl<'de> Deserialize<'de> for VfsOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VfsOp
impl RefUnwindSafe for VfsOp
impl Send for VfsOp
impl Sync for VfsOp
impl Unpin for VfsOp
impl UnwindSafe for VfsOp
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> 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