pub struct WorkspaceInviteLink {
pub id: String,
pub _type: String,
pub invited_email: String,
pub restricted_to_email_domains: Vec<String>,
pub created_time: Option<DateTime<Utc>>,
pub permission_level: String,
pub referred_by_user_id: String,
}
Fields§
§id: String
§_type: String
§invited_email: String
§restricted_to_email_domains: Vec<String>
§created_time: Option<DateTime<Utc>>
§permission_level: String
§referred_by_user_id: String
Trait Implementations§
Source§impl Clone for WorkspaceInviteLink
impl Clone for WorkspaceInviteLink
Source§fn clone(&self) -> WorkspaceInviteLink
fn clone(&self) -> WorkspaceInviteLink
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 Debug for WorkspaceInviteLink
impl Debug for WorkspaceInviteLink
Source§impl<'de> Deserialize<'de> for WorkspaceInviteLink
impl<'de> Deserialize<'de> for WorkspaceInviteLink
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
Auto Trait Implementations§
impl Freeze for WorkspaceInviteLink
impl RefUnwindSafe for WorkspaceInviteLink
impl Send for WorkspaceInviteLink
impl Sync for WorkspaceInviteLink
impl Unpin for WorkspaceInviteLink
impl UnwindSafe for WorkspaceInviteLink
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