Struct bitwarden_api_api::models::organization_user_accept_init_request_model::OrganizationUserAcceptInitRequestModel
source · pub struct OrganizationUserAcceptInitRequestModel {
pub token: String,
pub key: String,
pub keys: Box<OrganizationKeysRequestModel>,
pub collection_name: Option<String>,
}
Fields§
§token: String
§key: String
§keys: Box<OrganizationKeysRequestModel>
§collection_name: Option<String>
Implementations§
source§impl OrganizationUserAcceptInitRequestModel
impl OrganizationUserAcceptInitRequestModel
pub fn new( token: String, key: String, keys: OrganizationKeysRequestModel ) -> OrganizationUserAcceptInitRequestModel
Trait Implementations§
source§impl Clone for OrganizationUserAcceptInitRequestModel
impl Clone for OrganizationUserAcceptInitRequestModel
source§fn clone(&self) -> OrganizationUserAcceptInitRequestModel
fn clone(&self) -> OrganizationUserAcceptInitRequestModel
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 OrganizationUserAcceptInitRequestModel
impl Default for OrganizationUserAcceptInitRequestModel
source§fn default() -> OrganizationUserAcceptInitRequestModel
fn default() -> OrganizationUserAcceptInitRequestModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OrganizationUserAcceptInitRequestModel
impl<'de> Deserialize<'de> for OrganizationUserAcceptInitRequestModel
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<OrganizationUserAcceptInitRequestModel> for OrganizationUserAcceptInitRequestModel
impl PartialEq<OrganizationUserAcceptInitRequestModel> for OrganizationUserAcceptInitRequestModel
source§fn eq(&self, other: &OrganizationUserAcceptInitRequestModel) -> bool
fn eq(&self, other: &OrganizationUserAcceptInitRequestModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OrganizationUserAcceptInitRequestModel
Auto Trait Implementations§
impl RefUnwindSafe for OrganizationUserAcceptInitRequestModel
impl Send for OrganizationUserAcceptInitRequestModel
impl Sync for OrganizationUserAcceptInitRequestModel
impl Unpin for OrganizationUserAcceptInitRequestModel
impl UnwindSafe for OrganizationUserAcceptInitRequestModel
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