pub struct APIForbiddenError {
pub message: Option<String>,
pub url: Option<String>,
}Fields§
§message: Option<String>§url: Option<String>Trait Implementations§
Source§impl Clone for APIForbiddenError
impl Clone for APIForbiddenError
Source§fn clone(&self) -> APIForbiddenError
fn clone(&self) -> APIForbiddenError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for APIForbiddenError
impl Debug for APIForbiddenError
Source§impl<'de> Deserialize<'de> for APIForbiddenError
impl<'de> Deserialize<'de> for APIForbiddenError
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<APIForbiddenError> for ApiError
impl From<APIForbiddenError> for ApiError
Source§fn from(value: APIForbiddenError) -> Self
fn from(value: APIForbiddenError) -> Self
Converts to this type from the input type.
Source§impl FromResponse for APIForbiddenError
impl FromResponse for APIForbiddenError
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for APIForbiddenError
impl PartialEq for APIForbiddenError
Source§impl Serialize for APIForbiddenError
impl Serialize for APIForbiddenError
impl StructuralPartialEq for APIForbiddenError
Auto Trait Implementations§
impl Freeze for APIForbiddenError
impl RefUnwindSafe for APIForbiddenError
impl Send for APIForbiddenError
impl Sync for APIForbiddenError
impl Unpin for APIForbiddenError
impl UnwindSafe for APIForbiddenError
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