Enum rust_tdlib::errors::RTDError [−][src]
pub enum RTDError { Io(Error), SerdeJson(Error), TdlibError(String), Internal(&'static str), BadRequest(&'static str), }
Variants
Io(Error)
SerdeJson(Error)
TdlibError(String)
Internal(&'static str)
BadRequest(&'static str)
Trait Implementations
impl Error for RTDError
[src]
impl Error for RTDError
[src]fn cause(&self) -> Option<&dyn Error>
[src]
fn cause(&self) -> Option<&dyn Error>
[src]👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str
1.0.0[src]
fn description(&self) -> &str
1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl<T> From<SendTimeoutError<T>> for RTDError
[src]
impl<T> From<SendTimeoutError<T>> for RTDError
[src]fn from(err: SendTimeoutError<T>) -> Self
[src]
fn from(err: SendTimeoutError<T>) -> Self
[src]Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for RTDError
impl Send for RTDError
impl Sync for RTDError
impl Unpin for RTDError
impl !UnwindSafe for RTDError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more