Struct slack_web_api::SlackApiError
source · pub struct SlackApiError {
pub status: u16,
pub errors: Option<Vec<String>>,
pub warnings: Option<Vec<String>>,
pub http_response_body: Option<String>,
}Fields§
§status: u16§errors: Option<Vec<String>>§warnings: Option<Vec<String>>§http_response_body: Option<String>Trait Implementations§
source§impl Debug for SlackApiError
impl Debug for SlackApiError
source§impl From<SlackApiError> for SlackError
impl From<SlackApiError> for SlackError
source§fn from(value: SlackApiError) -> Self
fn from(value: SlackApiError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiError
impl Send for SlackApiError
impl Sync for SlackApiError
impl Unpin for SlackApiError
impl UnwindSafe for SlackApiError
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