pub struct PatchScimV2UsersUserIdBodyOperationsItemValue {
pub active: Option<bool>,
}
Fields§
§active: Option<bool>
Sets the user’s active
state:
true
— Activates the user. This lets them authenticate in to your Postman team.false
— Removes the user from your Postman team and deactivates the account. This blocks the user from authenticating in to Postman.
Trait Implementations§
Source§impl Clone for PatchScimV2UsersUserIdBodyOperationsItemValue
impl Clone for PatchScimV2UsersUserIdBodyOperationsItemValue
Source§fn clone(&self) -> PatchScimV2UsersUserIdBodyOperationsItemValue
fn clone(&self) -> PatchScimV2UsersUserIdBodyOperationsItemValue
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<'de> Deserialize<'de> for PatchScimV2UsersUserIdBodyOperationsItemValue
impl<'de> Deserialize<'de> for PatchScimV2UsersUserIdBodyOperationsItemValue
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 PartialEq for PatchScimV2UsersUserIdBodyOperationsItemValue
impl PartialEq for PatchScimV2UsersUserIdBodyOperationsItemValue
Source§fn eq(&self, other: &PatchScimV2UsersUserIdBodyOperationsItemValue) -> bool
fn eq(&self, other: &PatchScimV2UsersUserIdBodyOperationsItemValue) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PatchScimV2UsersUserIdBodyOperationsItemValue
Auto Trait Implementations§
impl Freeze for PatchScimV2UsersUserIdBodyOperationsItemValue
impl RefUnwindSafe for PatchScimV2UsersUserIdBodyOperationsItemValue
impl Send for PatchScimV2UsersUserIdBodyOperationsItemValue
impl Sync for PatchScimV2UsersUserIdBodyOperationsItemValue
impl Unpin for PatchScimV2UsersUserIdBodyOperationsItemValue
impl UnwindSafe for PatchScimV2UsersUserIdBodyOperationsItemValue
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