risingwave_error::tonic

Struct TonicStatusWrapper

source
pub struct TonicStatusWrapper {
    inner: Status,
    client_side_service_name: Option<Cow<'static, str>>,
}
Expand description

A wrapper of tonic::Status that provides better error message and extracts the source chain from the details field.

Fields§

§inner: Status§client_side_service_name: Option<Cow<'static, str>>

Optional service name from the client side.

§Explanation

tonic::Status is used for both client and server side. When the error is created on the server side, we encourage developers to provide the service name with ToTonicStatus::to_status, so that the info can be included in the HTTP response and then extracted by the client side (in TonicStatusWrapper::new).

However, if there’s something wrong with the server side and the error is directly created on the client side, the approach above is not applicable. In this case, the caller should set a “client side” service name to provide better error message. This is achieved by TonicStatusWrapperExt::with_client_side_service_name.

Implementations§

source§

impl TonicStatusWrapper

source

pub fn new(status: Status) -> Self

Create a new TonicStatusWrapper from the given tonic::Status and extract the source chain from its details field.

source

pub fn inner(&self) -> &Status

Returns the reference to the inner tonic::Status.

source

pub fn into_inner(self) -> Status

Consumes self and returns the inner tonic::Status.

Trait Implementations§

source§

impl Debug for TonicStatusWrapper

source§

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

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

impl Display for TonicStatusWrapper

source§

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

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

impl Error for TonicStatusWrapper

source§

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

Returns the lower-level source of this error, if any. Read more
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
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<Status> for TonicStatusWrapper

source§

fn from(status: Status) -> 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> 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, 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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
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> TonicStatusWrapperExt for T

source§

fn with_client_side_service_name( self, service_name: impl Into<Cow<'static, str>>, ) -> TonicStatusWrapper

Set the client side service name to provide better error message. 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