pub enum ObjectValueV41 {
None,
Some,
Object {
kind: ObjectKindV41,
attributes: ObjectAttributesV32,
},
Keys(EncryptionKeysV40),
Attribute {
size: u64,
has_overwrite_extents: bool,
},
Extent(ExtentValueV38),
Child(ChildValueV32),
Trim,
BytesAndNodes {
bytes: i64,
nodes: i64,
},
ExtendedAttribute(ExtendedAttributeValueV32),
VerifiedAttribute {
size: u64,
fsverity_metadata: FsverityMetadataV33,
},
}
Variants§
None
Some keys have no value (this often indicates a tombstone of some sort). Records with this value are always filtered when a major compaction is performed, so the meaning must be the same as if the item was not present.
Some
Some keys have no value but need to differentiate between a present value and no value (None) i.e. their value is really a boolean: None => false, Some => true.
Object
The value for an ObjectKey::Object record.
Keys(EncryptionKeysV40)
Encryption keys for an object.
Attribute
An attribute associated with a file object. |size| is the size of the attribute in bytes.
Extent(ExtentValueV38)
An extent associated with an object.
Child(ChildValueV32)
A child of an object.
Trim
Graveyard entries can contain these entries which will cause a file that has extents beyond EOF to be trimmed at mount time. This is used in cases where shrinking a file can exceed the bounds of a single transaction.
BytesAndNodes
Added to support tracking Project ID usage and limits.
ExtendedAttribute(ExtendedAttributeValueV32)
A value for an extended attribute. Either inline or a redirection to an attribute with extents.
VerifiedAttribute
An attribute associated with a verified file object. |size| is the size of the attribute in bytes. |fsverity_metadata| holds the descriptor for the fsverity-enabled file.
Implementations§
Source§impl ObjectValueV41
impl ObjectValueV41
Sourcepub fn file(
refs: u64,
allocated_size: u64,
creation_time: Timestamp,
modification_time: Timestamp,
access_time: Timestamp,
change_time: Timestamp,
project_id: u64,
posix_attributes: Option<PosixAttributes>,
) -> ObjectValue
pub fn file( refs: u64, allocated_size: u64, creation_time: Timestamp, modification_time: Timestamp, access_time: Timestamp, change_time: Timestamp, project_id: u64, posix_attributes: Option<PosixAttributes>, ) -> ObjectValue
Creates an ObjectValue for a file object.
pub fn keys(keys: EncryptionKeys) -> ObjectValue
Sourcepub fn attribute(size: u64, has_overwrite_extents: bool) -> ObjectValue
pub fn attribute(size: u64, has_overwrite_extents: bool) -> ObjectValue
Creates an ObjectValue for an object attribute.
Sourcepub fn verified_attribute(
size: u64,
fsverity_metadata: FsverityMetadata,
) -> ObjectValue
pub fn verified_attribute( size: u64, fsverity_metadata: FsverityMetadata, ) -> ObjectValue
Creates an ObjectValue for an object attribute of a verified file.
Sourcepub fn extent(device_offset: u64, key_id: u64) -> ObjectValue
pub fn extent(device_offset: u64, key_id: u64) -> ObjectValue
Creates an ObjectValue for an insertion/replacement of an object extent.
Sourcepub fn extent_with_checksum(
device_offset: u64,
checksum: Checksums,
key_id: u64,
) -> ObjectValue
pub fn extent_with_checksum( device_offset: u64, checksum: Checksums, key_id: u64, ) -> ObjectValue
Creates an ObjectValue for an insertion/replacement of an object extent.
Sourcepub fn deleted_extent() -> ObjectValue
pub fn deleted_extent() -> ObjectValue
Creates an ObjectValue for a deletion of an object extent.
Sourcepub fn child(object_id: u64, object_descriptor: ObjectDescriptor) -> ObjectValue
pub fn child(object_id: u64, object_descriptor: ObjectDescriptor) -> ObjectValue
Creates an ObjectValue for an object child.
Sourcepub fn symlink(
link: impl Into<Vec<u8>>,
creation_time: Timestamp,
modification_time: Timestamp,
project_id: u64,
) -> ObjectValue
pub fn symlink( link: impl Into<Vec<u8>>, creation_time: Timestamp, modification_time: Timestamp, project_id: u64, ) -> ObjectValue
Creates an ObjectValue for an object symlink.
pub fn inline_extended_attribute(value: impl Into<Vec<u8>>) -> ObjectValue
pub fn extended_attribute(attribute_id: u64) -> ObjectValue
Trait Implementations§
Source§impl Clone for ObjectValueV41
impl Clone for ObjectValueV41
Source§fn clone(&self) -> ObjectValueV41
fn clone(&self) -> ObjectValueV41
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ObjectValueV41
impl Debug for ObjectValueV41
Source§impl<'de> Deserialize<'de> for ObjectValueV41
impl<'de> Deserialize<'de> for ObjectValueV41
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>,
Source§impl From<ObjectValueV40> for ObjectValueV41
impl From<ObjectValueV40> for ObjectValueV41
Source§fn from(value: ObjectValueV40) -> Self
fn from(value: ObjectValueV40) -> Self
Source§impl PartialEq for ObjectValueV41
impl PartialEq for ObjectValueV41
Source§impl Serialize for ObjectValueV41
impl Serialize for ObjectValueV41
Source§impl TypeFingerprint for ObjectValueV41
impl TypeFingerprint for ObjectValueV41
fn fingerprint() -> String
Source§impl Versioned for ObjectValueV41
impl Versioned for ObjectValueV41
impl StructuralPartialEq for ObjectValueV41
Auto Trait Implementations§
impl Freeze for ObjectValueV41
impl RefUnwindSafe for ObjectValueV41
impl Send for ObjectValueV41
impl Sync for ObjectValueV41
impl Unpin for ObjectValueV41
impl UnwindSafe for ObjectValueV41
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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>
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>
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