Struct eve_rs::Error

source ·
pub struct Error<TErrorData>where
    TErrorData: Default,{ /* private fields */ }

Implementations§

source§

impl<TErrorData> Error<TErrorData>where TErrorData: Default,

source

pub fn new(error: Box<dyn StdError + Send + Sync>) -> Self

source

pub fn new_with_data( error: Box<dyn StdError + Send + Sync>, data: TErrorData ) -> Self

source

pub fn empty() -> Self

source

pub fn as_result<TValue>() -> Result<TValue, Self>

source

pub fn get_status(&self) -> Option<u16>

source

pub fn status(self, status: u16) -> Self

source

pub fn body<TBody>(self, body: TBody) -> Selfwhere TBody: AsRef<str>,

source

pub fn get_body_bytes(&self) -> Option<&[u8]>

source

pub fn body_bytes(self, bytes: &[u8]) -> Self

source

pub fn get_error(&self) -> &(dyn StdError + Send + Sync)

source

pub fn error(self, error: Box<dyn StdError + Send + Sync>) -> Self

source

pub fn get_data(&self) -> &TErrorData

source

pub fn get_data_mut(&mut self) -> &mut TErrorData

source

pub fn data(self, data: TErrorData) -> Self

Trait Implementations§

source§

impl<TErrorData> AsMut<TErrorData> for Error<TErrorData>where TErrorData: Default + Send + Sync,

source§

fn as_mut(&mut self) -> &mut TErrorData

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<TErrorData> AsRef<TErrorData> for Error<TErrorData>where TErrorData: Default + Send + Sync,

source§

fn as_ref(&self) -> &TErrorData

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<TErrorData> Debug for Error<TErrorData>where TErrorData: Default + Debug,

source§

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

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

impl<TErrorData> Deref for Error<TErrorData>where TErrorData: Default + Send + Sync,

§

type Target = TErrorData

The resulting type after dereferencing.
source§

fn deref(&self) -> &TErrorData

Dereferences the value.
source§

impl<TErrorData> DerefMut for Error<TErrorData>where TErrorData: Default + Send + Sync,

source§

fn deref_mut(&mut self) -> &mut TErrorData

Mutably dereferences the value.
source§

impl<StdErr, TErrorData> From<StdErr> for Error<TErrorData>where StdErr: 'static + StdError + Send + Sync, TErrorData: Default + Send + Sync,

source§

fn from(err: StdErr) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<TErrorData> !RefUnwindSafe for Error<TErrorData>

§

impl<TErrorData> Send for Error<TErrorData>where TErrorData: Send,

§

impl<TErrorData> Sync for Error<TErrorData>where TErrorData: Sync,

§

impl<TErrorData> Unpin for Error<TErrorData>where TErrorData: Unpin,

§

impl<TErrorData> !UnwindSafe for Error<TErrorData>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
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 Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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