pub struct ScimUserResource {
pub schemas: Option<Vec<String>>,
pub id: Option<String>,
pub user_name: Option<String>,
pub name: Option<Value>,
pub external_id: Option<String>,
pub active: Option<bool>,
pub meta: Option<Value>,
}
Fields§
§schemas: Option<Vec<String>>
A list of schema resource URIs.
id: Option<String>
The team member’s SCIM ID.
user_name: Option<String>
The team member’s SCIM username.
name: Option<Value>
Information about the Postman team member.
external_id: Option<String>
The team member’s external ID.
active: Option<bool>
If true, the team member is active.
meta: Option<Value>
Trait Implementations§
Source§impl Debug for ScimUserResource
impl Debug for ScimUserResource
Source§impl Default for ScimUserResource
impl Default for ScimUserResource
Source§fn default() -> ScimUserResource
fn default() -> ScimUserResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimUserResource
impl<'de> Deserialize<'de> for ScimUserResource
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 Display for ScimUserResource
impl Display for ScimUserResource
Auto Trait Implementations§
impl Freeze for ScimUserResource
impl RefUnwindSafe for ScimUserResource
impl Send for ScimUserResource
impl Sync for ScimUserResource
impl Unpin for ScimUserResource
impl UnwindSafe for ScimUserResource
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