risingwave_object_store::object::error

Struct ObjectError

source
pub struct ObjectError(ErrorBox<ObjectErrorInner, MaybeBacktrace>);
Expand description

The Box-wrapped type of ObjectErrorInner.

A backtrace is captured when the inner error doesn’t provide one.

Tuple Fields§

§0: ErrorBox<ObjectErrorInner, MaybeBacktrace>

Implementations§

source§

impl ObjectError

source

pub fn inner(&self) -> &ObjectErrorInner

Returns the reference to the inner error.

source

pub fn into_inner(self) -> ObjectErrorInner

Consumes self and returns the inner error.

source§

impl ObjectError

source

pub fn s3(inner: impl Into<BoxedError>, should_retry: impl Into<bool>) -> Self

Constructs a ObjectErrorInner::S3 variant.

source

pub fn disk(inner: impl Into<Error>, msg: impl Into<String>) -> Self

Constructs a ObjectErrorInner::Disk variant.

source

pub fn timeout(arg_0: impl Into<String>) -> Self

Constructs a ObjectErrorInner::Timeout variant.

source§

impl ObjectError

source

pub fn internal(msg: impl ToString) -> Self

source

pub fn is_object_not_found_error(&self) -> bool

Tells whether the error indicates the target object is not found.

source

pub fn should_retry(&self, retry_opendal_s3_unknown_error: bool) -> bool

Trait Implementations§

source§

impl Condition<ObjectError> for RetryCondition

source§

fn should_retry(&mut self, err: &ObjectError) -> bool

source§

impl Debug for ObjectError

source§

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

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

impl Display for ObjectError

source§

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

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

impl Error for ObjectError

source§

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

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

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

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. 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§

impl From<Error> for ObjectError

source§

fn from(e: ByteStreamError) -> Self

Converts to this type from the input type.
source§

impl<E> From<E> for ObjectError

source§

fn from(error: E) -> Self

Converts to this type from the input type.
source§

impl From<ErrorBox<ObjectErrorInner, MaybeBacktrace>> for ObjectError

source§

fn from(source: ErrorBox<ObjectErrorInner, MaybeBacktrace>) -> Self

Converts to this type from the input type.
source§

impl From<RecvError> for ObjectError

source§

fn from(e: RecvError) -> Self

Converts to this type from the input type.
source§

impl<E, R> From<SdkError<E, R>> for ObjectError
where E: Error + Sync + Send + 'static, R: Send + Sync + 'static + Debug,

source§

fn from(e: SdkError<E, R>) -> 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
§

impl<T> AsDyn for T
where T: Error,

§

fn as_dyn(&self) -> &dyn Error

Casts the error to a trait object.
§

impl<T> AsReport for T
where T: Error,

§

fn as_report(&self) -> Report<'_>

Returns a [Report] that formats the error and its sources in a cleaned-up way. Read more
§

fn to_report_string(&self) -> String

Converts the error to a [Report] and formats it in a compact way. Read more
§

fn to_report_string_with_backtrace(&self) -> String

Converts the error to a [Report] and formats it in a compact way, including backtraces if available. Read more
§

fn to_report_string_pretty(&self) -> String

Converts the error to a [Report] and formats it in a pretty way. Read more
§

fn to_report_string_pretty_with_backtrace(&self) -> String

Converts the error to a [Report] and formats it in a pretty way, 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<T> ErrorIsFromTonicServerImpl for T
where T: Error + ?Sized,

source§

fn is_from_tonic_server_impl(&self) -> bool

Returns whether the error is from the implementation of a tonic server, i.e., created with ToTonicStatus::to_status. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

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

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

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> IntoResult<T> for T

§

type Err = Infallible

§

fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>

§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<M> MetricVecRelabelExt for M

source§

fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

source§

fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>

source§

fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>

Equivalent to RelabeledMetricVec::with_metric_level_relabel_n with metric_level set to MetricLevel::Debug and relabel_num set to 1.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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§

default fn to_string(&self) -> String

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

impl<T> ToTonicStatus for T
where T: Error + ?Sized,

source§

fn to_status( &self, code: Code, service_name: impl Into<Cow<'static, str>>, ) -> Status

Convert the error to tonic::Status with the given tonic::Code and service name. Read more
source§

fn to_status_unnamed(&self, code: Code) -> Status

Convert the error to tonic::Status with the given tonic::Code without specifying the service name. Prefer to_status if possible. 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
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
§

impl<T> DevConfig for T
where T: Send + Sync + 'static + Debug,

source§

impl<T> LruValue for T
where T: Send + Sync,

§

impl<T> MaybeSend for T
where T: Send,

§

impl<T> Value for T
where T: Send + Sync + 'static,