pub struct CreateInviteToken201Response {
pub token: Option<String>,
pub scope: Option<String>,
pub invited_profile_ids: Option<Vec<String>>,
pub expires_at: Option<String>,
pub invite_url: Option<String>,
}Fields§
§token: Option<String>§scope: Option<String>§invited_profile_ids: Option<Vec<String>>§expires_at: Option<String>§invite_url: Option<String>Implementations§
Source§impl CreateInviteToken201Response
impl CreateInviteToken201Response
pub fn new() -> CreateInviteToken201Response
Trait Implementations§
Source§impl Clone for CreateInviteToken201Response
impl Clone for CreateInviteToken201Response
Source§fn clone(&self) -> CreateInviteToken201Response
fn clone(&self) -> CreateInviteToken201Response
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateInviteToken201Response
impl Debug for CreateInviteToken201Response
Source§impl Default for CreateInviteToken201Response
impl Default for CreateInviteToken201Response
Source§fn default() -> CreateInviteToken201Response
fn default() -> CreateInviteToken201Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateInviteToken201Response
impl<'de> Deserialize<'de> for CreateInviteToken201Response
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 CreateInviteToken201Response
impl PartialEq for CreateInviteToken201Response
Source§fn eq(&self, other: &CreateInviteToken201Response) -> bool
fn eq(&self, other: &CreateInviteToken201Response) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateInviteToken201Response
Auto Trait Implementations§
impl Freeze for CreateInviteToken201Response
impl RefUnwindSafe for CreateInviteToken201Response
impl Send for CreateInviteToken201Response
impl Sync for CreateInviteToken201Response
impl Unpin for CreateInviteToken201Response
impl UnsafeUnpin for CreateInviteToken201Response
impl UnwindSafe for CreateInviteToken201Response
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