pub struct LimitlessContentError {
pub message: String,
pub code: Option<String>,
}Expand description
Represents an error returned by the Limitless API in the response body.
The message field contains the human-readable error description.
The code field (if present) contains a machine-readable error code.
Fields§
§message: StringHuman-readable error message from the API.
code: Option<String>Optional machine-readable error code.
Trait Implementations§
Source§impl Debug for LimitlessContentError
impl Debug for LimitlessContentError
Source§impl<'de> Deserialize<'de> for LimitlessContentError
impl<'de> Deserialize<'de> for LimitlessContentError
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 LimitlessContentError
impl RefUnwindSafe for LimitlessContentError
impl Send for LimitlessContentError
impl Sync for LimitlessContentError
impl Unpin for LimitlessContentError
impl UnsafeUnpin for LimitlessContentError
impl UnwindSafe for LimitlessContentError
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