pub struct ApiError {
pub status_code: StatusCode,
pub message: String,
pub documentation_url: String,
pub request_id: String,
}Expand description
Ошибка API
Fields§
§status_code: StatusCodeHTTP статус код
message: StringСообщение об ошибке
documentation_url: StringURL документации
request_id: StringУникальный идентификатор запроса
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApiError
impl RefUnwindSafe for ApiError
impl Send for ApiError
impl Sync for ApiError
impl Unpin for ApiError
impl UnsafeUnpin for ApiError
impl UnwindSafe for ApiError
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