pub struct MistralApiError {
pub code: u32,
pub error_type: String,
pub message: String,
pub object: String,
pub param: Option<String>,
pub description: String,
}Fields§
§code: u32§error_type: String§message: String§object: String§param: Option<String>§description: StringTrait Implementations§
Source§impl Debug for MistralApiError
impl Debug for MistralApiError
Source§impl<'de> Deserialize<'de> for MistralApiError
impl<'de> Deserialize<'de> for MistralApiError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MistralApiError
impl RefUnwindSafe for MistralApiError
impl Send for MistralApiError
impl Sync for MistralApiError
impl Unpin for MistralApiError
impl UnsafeUnpin for MistralApiError
impl UnwindSafe for MistralApiError
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