pub struct LineApiError {
pub status: u16,
pub error: LineApiErrorResponse,
pub warnings: Option<Vec<String>>,
pub http_response_body: Option<String>,
}
Fields§
§status: u16
§error: LineApiErrorResponse
§warnings: Option<Vec<String>>
§http_response_body: Option<String>
Trait Implementations§
Source§impl Clone for LineApiError
impl Clone for LineApiError
Source§fn clone(&self) -> LineApiError
fn clone(&self) -> LineApiError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LineApiError
impl Debug for LineApiError
Source§impl<'de> Deserialize<'de> for LineApiError
impl<'de> Deserialize<'de> for LineApiError
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
Source§impl From<LineApiError> for LineError
impl From<LineApiError> for LineError
Source§fn from(value: LineApiError) -> Self
fn from(value: LineApiError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LineApiError
impl RefUnwindSafe for LineApiError
impl Send for LineApiError
impl Sync for LineApiError
impl Unpin for LineApiError
impl UnwindSafe for LineApiError
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