pub struct ScimError {
pub schemas: Vec<String>,
pub status: String,
pub scim_type: Option<String>,
pub detail: Option<String>,
}Expand description
SCIM error response shape — RFC 7644 §3.12.
Fields§
§schemas: Vec<String>§status: String§scim_type: Option<String>§detail: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ScimError
impl<'de> Deserialize<'de> for ScimError
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 ScimError
impl RefUnwindSafe for ScimError
impl Send for ScimError
impl Sync for ScimError
impl Unpin for ScimError
impl UnsafeUnpin for ScimError
impl UnwindSafe for ScimError
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