pub enum ObjectValueV46 {
None,
Some,
Object {
kind: ObjectKindV46,
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 ObjectValueV46
impl ObjectValueV46
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.
Sourcepub fn encrypted_symlink(
link: impl Into<Vec<u8>>,
creation_time: Timestamp,
modification_time: Timestamp,
project_id: u64,
) -> ObjectValue
pub fn encrypted_symlink( link: impl Into<Vec<u8>>, creation_time: Timestamp, modification_time: Timestamp, project_id: u64, ) -> ObjectValue
Creates an ObjectValue for an encrypted symlink object.
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 ObjectValueV46
impl Clone for ObjectValueV46
Source§fn clone(&self) -> ObjectValueV46
fn clone(&self) -> ObjectValueV46
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ObjectValueV46
impl Debug for ObjectValueV46
Source§impl<'de> Deserialize<'de> for ObjectValueV46
impl<'de> Deserialize<'de> for ObjectValueV46
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<ObjectValueV41> for ObjectValueV46
impl From<ObjectValueV41> for ObjectValueV46
Source§fn from(from: ObjectValueV41) -> Self
fn from(from: ObjectValueV41) -> Self
Source§impl PartialEq for ObjectValueV46
impl PartialEq for ObjectValueV46
Source§impl Serialize for ObjectValueV46
impl Serialize for ObjectValueV46
Source§impl TypeFingerprint for ObjectValueV46
impl TypeFingerprint for ObjectValueV46
fn fingerprint() -> String
Source§impl Versioned for ObjectValueV46
impl Versioned for ObjectValueV46
impl StructuralPartialEq for ObjectValueV46
Auto Trait Implementations§
impl Freeze for ObjectValueV46
impl RefUnwindSafe for ObjectValueV46
impl Send for ObjectValueV46
impl Sync for ObjectValueV46
impl Unpin for ObjectValueV46
impl UnwindSafe for ObjectValueV46
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