Skip to main content

FsckIssueDetail

Enum FsckIssueDetail 

Source
pub enum FsckIssueDetail {
Show 33 variants MissingVersionRecord { version_locator: String, }, OversizedRecordMetadata, RecordJsonInvalid, InvalidFileId { file_id: String, }, InvalidContentHash { content_hash: String, }, RecordPathMismatch { expected_locator: String, }, RecordFileIdPathMismatch, RecordContentHashPathMismatch, InvalidReconstructionPlan(FsckReconstructionPlanDetail), InvalidChunkHash { chunk_hash: String, }, InvalidXorbHash { xorb_hash: String, }, ReferencedByRecord { record_location: String, }, ReferencedByNativeXetRecord { record_location: String, }, ReferencedByNativeXetXorb { xorb_location: String, }, HashMismatch { expected_hash: String, observed_hash: String, }, LengthMismatch { expected_length: u64, observed_length: u64, }, XorbRangeExceededChunkCount { range_start: u32, range_end: u32, chunk_count: usize, }, MismatchedVersionRecord { version_locator: String, }, MappedChunkHash { chunk_hash: String, }, MappedChunkHashAbsentFromRetainedShard { chunk_hash: String, }, InvalidRetainedShard(InvalidSerializedShardError), ReconstructionListedUnreadableRow, ReconstructionContainedNoTerms, MissingReconstructionXorb { xorb_hash: String, }, InvalidQuarantineTimeline { delete_after_unix_seconds: u64, first_seen_unreachable_at_unix_seconds: u64, }, QuarantineReferencedMissingObject, QuarantineTargetedReachableObject, InvalidRetentionTimeline { release_after_unix_seconds: u64, held_at_unix_seconds: u64, }, ActiveRetentionHoldReason { reason: String, }, ActiveRetentionHoldQuarantined, WebhookDeliveryTimestampExceeded { processed_at_unix_seconds: u64, max_allowed_unix_seconds: u64, }, ProviderRepositoryIdentityInvalid, ProviderRepositoryStateTimestampExceeded { field: ProviderRepositoryStateTimestampField, timestamp: u64, max_allowed_unix_seconds: u64, },
}
Expand description

Integrity issue detail.

Variants§

§

MissingVersionRecord

A required version record was missing.

Fields

§version_locator: String

Expected version-record locator.

§

OversizedRecordMetadata

Record metadata exceeded parser limits.

§

RecordJsonInvalid

Record JSON was invalid.

§

InvalidFileId

A record file identifier was invalid.

Fields

§file_id: String

Invalid file identifier.

§

InvalidContentHash

A record content hash was invalid.

Fields

§content_hash: String

Invalid content hash.

§

RecordPathMismatch

A record was stored at an unexpected location.

Fields

§expected_locator: String

Expected record locator.

§

RecordFileIdPathMismatch

A record file identifier did not match its path.

§

RecordContentHashPathMismatch

A record content hash did not match its path.

§

InvalidReconstructionPlan(FsckReconstructionPlanDetail)

A reconstruction plan was invalid.

§

InvalidChunkHash

A chunk hash was invalid.

Fields

§chunk_hash: String

Invalid chunk hash.

§

InvalidXorbHash

An xorb hash was invalid.

Fields

§xorb_hash: String

Invalid xorb hash.

§

ReferencedByRecord

An object was referenced by a record.

Fields

§record_location: String

Referencing record location.

§

ReferencedByNativeXetRecord

An object was referenced by a native Xet record.

Fields

§record_location: String

Referencing record location.

§

ReferencedByNativeXetXorb

An object was referenced by a native Xet xorb.

Fields

§xorb_location: String

Referencing xorb location.

§

HashMismatch

A hash comparison failed.

Fields

§expected_hash: String

Expected hash.

§observed_hash: String

Observed hash.

§

LengthMismatch

A length comparison failed.

Fields

§expected_length: u64

Expected length.

§observed_length: u64

Observed length.

§

XorbRangeExceededChunkCount

A native Xet range exceeded the xorb chunk count.

Fields

§range_start: u32

Requested range start.

§range_end: u32

Requested range end.

§chunk_count: usize

Available chunk count.

§

MismatchedVersionRecord

A latest record differed from its immutable version.

Fields

§version_locator: String

Version-record locator.

§

MappedChunkHash

A mapped chunk hash points at a retained shard object.

Fields

§chunk_hash: String

Mapped chunk hash.

§

MappedChunkHashAbsentFromRetainedShard

A mapped chunk hash was absent from its retained shard.

Fields

§chunk_hash: String

Mapped chunk hash.

§

InvalidRetainedShard(InvalidSerializedShardError)

A retained shard was invalid.

§

ReconstructionListedUnreadableRow

A reconstruction row was listed but unreadable.

§

ReconstructionContainedNoTerms

A reconstruction contained no terms.

§

MissingReconstructionXorb

A reconstruction referenced an unregistered xorb.

Fields

§xorb_hash: String

Missing xorb hash.

§

InvalidQuarantineTimeline

Quarantine delete-after preceded first-seen.

Fields

§delete_after_unix_seconds: u64

Candidate delete-after timestamp.

§first_seen_unreachable_at_unix_seconds: u64

Candidate first-seen timestamp.

§

QuarantineReferencedMissingObject

Quarantine metadata referenced a missing object.

§

QuarantineTargetedReachableObject

Quarantine metadata targeted a reachable object.

§

InvalidRetentionTimeline

Retention hold release-after preceded held-at.

Fields

§release_after_unix_seconds: u64

Hold release timestamp.

§held_at_unix_seconds: u64

Hold creation timestamp.

§

ActiveRetentionHoldReason

Active retention hold reason for a missing held object.

Fields

§reason: String

Retention reason.

§

ActiveRetentionHoldQuarantined

Active retention hold coexisted with quarantine state.

§

WebhookDeliveryTimestampExceeded

Webhook delivery timestamp exceeded the accepted future skew.

Fields

§processed_at_unix_seconds: u64

Observed processed-at timestamp.

§max_allowed_unix_seconds: u64

Maximum accepted timestamp.

§

ProviderRepositoryIdentityInvalid

Provider repository identity failed validation.

§

ProviderRepositoryStateTimestampExceeded

Provider repository state timestamp exceeded the accepted future skew.

Fields

§timestamp: u64

Observed timestamp.

§max_allowed_unix_seconds: u64

Maximum accepted timestamp.

Trait Implementations§

Source§

impl Clone for FsckIssueDetail

Source§

fn clone(&self) -> FsckIssueDetail

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FsckIssueDetail

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Display for FsckIssueDetail

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Eq for FsckIssueDetail

Source§

impl Error for FsckIssueDetail

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl PartialEq for FsckIssueDetail

Source§

fn eq(&self, other: &FsckIssueDetail) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for FsckIssueDetail

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ServiceExt for T

Source§

fn follow_redirects(self) -> FollowRedirect<Self>
where Self: Sized,

Follow redirect resposes using the Standard policy. Read more
Source§

fn override_request_header<M>( self, header_name: HeaderName, make: M, ) -> SetRequestHeader<Self, M>
where Self: Sized,

Insert a header into the request. Read more
Source§

fn append_request_header<M>( self, header_name: HeaderName, make: M, ) -> SetRequestHeader<Self, M>
where Self: Sized,

Append a header into the request. Read more
Source§

fn insert_request_header_if_not_present<M>( self, header_name: HeaderName, make: M, ) -> SetRequestHeader<Self, M>
where Self: Sized,

Insert a header into the request, if the header is not already present. Read more
Source§

fn override_response_header<M>( self, header_name: HeaderName, make: M, ) -> SetResponseHeader<Self, M>
where Self: Sized,

Insert a header into the response. Read more
Source§

fn append_response_header<M>( self, header_name: HeaderName, make: M, ) -> SetResponseHeader<Self, M>
where Self: Sized,

Append a header into the response. Read more
Source§

fn insert_response_header_if_not_present<M>( self, header_name: HeaderName, make: M, ) -> SetResponseHeader<Self, M>
where Self: Sized,

Insert a header into the response, if the header is not already present. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more