pub struct BaseInviteLink {
pub id: String,
pub base_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
§base_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 BaseInviteLink
impl Clone for BaseInviteLink
Source§fn clone(&self) -> BaseInviteLink
fn clone(&self) -> BaseInviteLink
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 BaseInviteLink
impl Debug for BaseInviteLink
Source§impl<'de> Deserialize<'de> for BaseInviteLink
impl<'de> Deserialize<'de> for BaseInviteLink
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 BaseInviteLink
impl RefUnwindSafe for BaseInviteLink
impl Send for BaseInviteLink
impl Sync for BaseInviteLink
impl Unpin for BaseInviteLink
impl UnwindSafe for BaseInviteLink
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