pub struct OrganizationInviteLink {
pub id: Uuid,
pub code: Uuid,
pub organization_id: OrganizationId,
pub allowed_domains: Vec<String>,
pub invite: Invite,
pub supports_confirmation: bool,
pub creation_date: DateTime<Utc>,
}Expand description
An organization invite link as persisted by the server.
Fields§
§id: UuidUnique identifier of the invite link.
code: UuidThe invite code invitees present when accepting or confirming the invite.
organization_id: OrganizationIdThe organization this invite link belongs to.
allowed_domains: Vec<String>Email domains permitted to redeem this invite link.
invite: InviteThe sealed cryptographic invite carried in the invite link.
supports_confirmation: boolWhether invitees can self-confirm using this invite link.
creation_date: DateTime<Utc>When the invite link was created.
Trait Implementations§
Source§impl Clone for OrganizationInviteLink
impl Clone for OrganizationInviteLink
Source§fn clone(&self) -> OrganizationInviteLink
fn clone(&self) -> OrganizationInviteLink
Returns a duplicate 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 OrganizationInviteLink
impl Debug for OrganizationInviteLink
Source§impl<'de> Deserialize<'de> for OrganizationInviteLink
impl<'de> Deserialize<'de> for OrganizationInviteLink
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 From<OrganizationInviteLink> for JsValuewhere
OrganizationInviteLink: Serialize,
impl From<OrganizationInviteLink> for JsValuewhere
OrganizationInviteLink: Serialize,
Source§fn from(value: OrganizationInviteLink) -> Self
fn from(value: OrganizationInviteLink) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
impl FromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for &OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl IntoWasmAbi for &OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
Source§impl IntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl IntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
Source§impl OptionFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
Source§impl RefFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
impl RefFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = SelfOwner<OrganizationInviteLink>
type Anchor = SelfOwner<OrganizationInviteLink>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl Serialize for OrganizationInviteLink
impl Serialize for OrganizationInviteLink
Source§impl TryFrom<OrganizationInviteLinkResponseModel> for OrganizationInviteLink
impl TryFrom<OrganizationInviteLinkResponseModel> for OrganizationInviteLink
Source§impl Tsify for OrganizationInviteLink
impl Tsify for OrganizationInviteLink
const DECL: &'static str = "/**\n * An organization invite link as persisted by the server.\n */\nexport interface OrganizationInviteLink {\n /**\n * Unique identifier of the invite link.\n */\n id: Uuid;\n /**\n * The invite code invitees present when accepting or confirming the invite.\n */\n code: Uuid;\n /**\n * The organization this invite link belongs to.\n */\n organizationId: OrganizationId;\n /**\n * Email domains permitted to redeem this invite link.\n */\n allowedDomains: string[];\n /**\n * The sealed cryptographic invite carried in the invite link.\n */\n invite: Invite;\n /**\n * Whether invitees can self-confirm using this invite link.\n */\n supportsConfirmation: boolean;\n /**\n * When the invite link was created.\n */\n creationDate: DateTime<Utc>;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl VectorFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for OrganizationInviteLinkwhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl VectorIntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Auto Trait Implementations§
impl Freeze for OrganizationInviteLink
impl RefUnwindSafe for OrganizationInviteLink
impl Send for OrganizationInviteLink
impl Sync for OrganizationInviteLink
impl Unpin for OrganizationInviteLink
impl UnsafeUnpin for OrganizationInviteLink
impl UnwindSafe for OrganizationInviteLink
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.