Struct bitwarden_api_api::models::collection_details_response_model::CollectionDetailsResponseModel
source · pub struct CollectionDetailsResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub name: Option<String>,
pub external_id: Option<String>,
pub read_only: Option<bool>,
pub hide_passwords: Option<bool>,
pub manage: Option<bool>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§name: Option<String>
§external_id: Option<String>
§read_only: Option<bool>
§hide_passwords: Option<bool>
§manage: Option<bool>
Implementations§
Trait Implementations§
source§impl Clone for CollectionDetailsResponseModel
impl Clone for CollectionDetailsResponseModel
source§fn clone(&self) -> CollectionDetailsResponseModel
fn clone(&self) -> CollectionDetailsResponseModel
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<'de> Deserialize<'de> for CollectionDetailsResponseModel
impl<'de> Deserialize<'de> for CollectionDetailsResponseModel
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 CollectionDetailsResponseModel
impl PartialEq for CollectionDetailsResponseModel
source§fn eq(&self, other: &CollectionDetailsResponseModel) -> bool
fn eq(&self, other: &CollectionDetailsResponseModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CollectionDetailsResponseModel
Auto Trait Implementations§
impl Freeze for CollectionDetailsResponseModel
impl RefUnwindSafe for CollectionDetailsResponseModel
impl Send for CollectionDetailsResponseModel
impl Sync for CollectionDetailsResponseModel
impl Unpin for CollectionDetailsResponseModel
impl UnwindSafe for CollectionDetailsResponseModel
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