pub struct CipherBulkUpdateCollectionsRequestModel {
pub organization_id: Option<Uuid>,
pub cipher_ids: Option<Vec<Uuid>>,
pub collection_ids: Option<Vec<Uuid>>,
pub remove_collections: Option<bool>,
}
Fields§
§organization_id: Option<Uuid>
§cipher_ids: Option<Vec<Uuid>>
§collection_ids: Option<Vec<Uuid>>
§remove_collections: Option<bool>
If true, the collections will be removed from the ciphers. Otherwise, they will be added.
Implementations§
Trait Implementations§
Source§impl Clone for CipherBulkUpdateCollectionsRequestModel
impl Clone for CipherBulkUpdateCollectionsRequestModel
Source§fn clone(&self) -> CipherBulkUpdateCollectionsRequestModel
fn clone(&self) -> CipherBulkUpdateCollectionsRequestModel
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 CipherBulkUpdateCollectionsRequestModel
impl Default for CipherBulkUpdateCollectionsRequestModel
Source§fn default() -> CipherBulkUpdateCollectionsRequestModel
fn default() -> CipherBulkUpdateCollectionsRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CipherBulkUpdateCollectionsRequestModel
impl<'de> Deserialize<'de> for CipherBulkUpdateCollectionsRequestModel
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 CipherBulkUpdateCollectionsRequestModel
impl PartialEq for CipherBulkUpdateCollectionsRequestModel
Source§fn eq(&self, other: &CipherBulkUpdateCollectionsRequestModel) -> bool
fn eq(&self, other: &CipherBulkUpdateCollectionsRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CipherBulkUpdateCollectionsRequestModel
Auto Trait Implementations§
impl Freeze for CipherBulkUpdateCollectionsRequestModel
impl RefUnwindSafe for CipherBulkUpdateCollectionsRequestModel
impl Send for CipherBulkUpdateCollectionsRequestModel
impl Sync for CipherBulkUpdateCollectionsRequestModel
impl Unpin for CipherBulkUpdateCollectionsRequestModel
impl UnwindSafe for CipherBulkUpdateCollectionsRequestModel
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