pub struct OrganizationUserUpdateRequestModel {
pub type: OrganizationUserType,
pub access_secrets_manager: Option<bool>,
pub permissions: Option<Box<Permissions>>,
pub collections: Option<Vec<SelectionReadOnlyRequestModel>>,
pub groups: Option<Vec<Uuid>>,
}
Fields§
§type: OrganizationUserType
§access_secrets_manager: Option<bool>
§permissions: Option<Box<Permissions>>
§collections: Option<Vec<SelectionReadOnlyRequestModel>>
§groups: Option<Vec<Uuid>>
Implementations§
Trait Implementations§
Source§impl Clone for OrganizationUserUpdateRequestModel
impl Clone for OrganizationUserUpdateRequestModel
Source§fn clone(&self) -> OrganizationUserUpdateRequestModel
fn clone(&self) -> OrganizationUserUpdateRequestModel
Returns a copy 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 Default for OrganizationUserUpdateRequestModel
impl Default for OrganizationUserUpdateRequestModel
Source§fn default() -> OrganizationUserUpdateRequestModel
fn default() -> OrganizationUserUpdateRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationUserUpdateRequestModel
impl<'de> Deserialize<'de> for OrganizationUserUpdateRequestModel
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 OrganizationUserUpdateRequestModel
impl PartialEq for OrganizationUserUpdateRequestModel
Source§fn eq(&self, other: &OrganizationUserUpdateRequestModel) -> bool
fn eq(&self, other: &OrganizationUserUpdateRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationUserUpdateRequestModel
Auto Trait Implementations§
impl Freeze for OrganizationUserUpdateRequestModel
impl RefUnwindSafe for OrganizationUserUpdateRequestModel
impl Send for OrganizationUserUpdateRequestModel
impl Sync for OrganizationUserUpdateRequestModel
impl Unpin for OrganizationUserUpdateRequestModel
impl UnwindSafe for OrganizationUserUpdateRequestModel
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