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 for OrganizationUserAcceptInitRequestModel
impl PartialEq for OrganizationUserAcceptInitRequestModel
Source§fn eq(&self, other: &OrganizationUserAcceptInitRequestModel) -> bool
fn eq(&self, other: &OrganizationUserAcceptInitRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationUserAcceptInitRequestModel
Auto Trait Implementations§
impl Freeze for OrganizationUserAcceptInitRequestModel
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