pub enum ExecuteError {
Http(Error),
Payload(PayloadError),
Response(ResponseError),
}Expand description
Represents errors that can occur during the execution of a method using the Telegram Bot API client.
Variants§
Http(Error)
An error indicating a failure to send an HTTP request.
Payload(PayloadError)
An error indicating a failure to build an HTTP request payload.
Response(ResponseError)
An error received from the Telegram server in response to the execution request.
Trait Implementations§
Source§impl Debug for ExecuteError
impl Debug for ExecuteError
Source§impl Display for ExecuteError
impl Display for ExecuteError
Source§impl Error for ExecuteError
impl Error for ExecuteError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<Error> for ExecuteError
impl From<Error> for ExecuteError
Source§impl From<PayloadError> for ExecuteError
impl From<PayloadError> for ExecuteError
Source§fn from(value: PayloadError) -> Self
fn from(value: PayloadError) -> Self
Converts to this type from the input type.
Source§impl From<ResponseError> for ExecuteError
impl From<ResponseError> for ExecuteError
Source§fn from(value: ResponseError) -> Self
fn from(value: ResponseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExecuteError
impl !RefUnwindSafe for ExecuteError
impl Send for ExecuteError
impl Sync for ExecuteError
impl Unpin for ExecuteError
impl UnsafeUnpin for ExecuteError
impl !UnwindSafe for ExecuteError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more