Skip to main content

ChunkedError

Enum ChunkedError 

Source
pub enum ChunkedError {
    App(AppError),
    NotFound,
    TerminalState(String),
    ChunkOutOfRange {
        index: u64,
        chunk_count: u64,
    },
    DigestMismatch {
        expected_digest_multibase: String,
    },
    ChunkSizeMismatch {
        expected: u64,
        actual: u64,
    },
    IncompleteUpload {
        missing_count: u64,
        missing_indices: Vec<u64>,
    },
    BundleDigestMismatch,
    BundleTooLarge {
        size_bytes: u64,
    },
    InvalidManifest(String),
    RateLimited {
        retry_after_secs: u64,
    },
}
Expand description

Why a chunked operation refused. Kept apart from AppError because most arms are a specification error code the handler must put on the wire as <task-slug>:<code>, and several carry the details that code declares.

Variants§

§

App(AppError)

A general failure (authorization, I/O, storage) with no task-specific code of its own.

§

NotFound

No live chunked bundle of the right kind that this caller owns. Deliberately conflates absent, wrong kind, wrong algorithm and not yours.

§

TerminalState(String)

The bundle was completed, finalized, aborted, or has expired.

§

ChunkOutOfRange

index is not below the manifest’s chunk count.

Fields

§index: u64
§chunk_count: u64
§

DigestMismatch

The chunk’s bytes, or the digest the request restated, do not match the manifest entry for the index.

Fields

§expected_digest_multibase: String
§

ChunkSizeMismatch

The chunk decodes to the wrong length for its index.

Fields

§expected: u64
§actual: u64
§

IncompleteUpload

A chunked import is missing chunks; missing_indices is the first MAX_REPORTED_MISSING of them.

Fields

§missing_count: u64
§missing_indices: Vec<u64>
§

BundleDigestMismatch

Every chunk verified but the assembled bytes do not match the committed whole-bundle digest or size.

§

BundleTooLarge

The serialized state does not fit in the chunk-count bound at the chunk size this request allows.

Fields

§size_bytes: u64
§

InvalidManifest(String)

An import manifest that is internally inconsistent or names a digest this build cannot verify.

§

RateLimited

The caller exceeded its per-DID chunk request budget.

Fields

§retry_after_secs: u64

Trait Implementations§

Source§

impl Debug for ChunkedError

Source§

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

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

impl Display for ChunkedError

Source§

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

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

impl From<AppError> for ChunkedError

Source§

fn from(e: AppError) -> Self

Converts to this type from the input type.

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. 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> 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 = !

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

fn try_from(value: U) -> Result<T, !>

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<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
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