pub struct HandleOptions {
pub skip_journal_checks: bool,
pub skip_checksums: bool,
pub skip_fsverity: bool,
}Fields§
§skip_journal_checks: boolIf true, transactions used by this handle will skip journal space checks.
skip_checksums: boolIf true, data written to any attribute of this handle will not have per-block checksums computed.
skip_fsverity: boolIf true, any files using fsverity will not attempt to perform any verification. This is useful to open an object without the correct encryption keys to look at the metadata.
Trait Implementations§
Source§impl Default for HandleOptions
impl Default for HandleOptions
Source§fn default() -> HandleOptions
fn default() -> HandleOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HandleOptions
impl RefUnwindSafe for HandleOptions
impl Send for HandleOptions
impl Sync for HandleOptions
impl Unpin for HandleOptions
impl UnwindSafe for HandleOptions
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§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>
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