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<OrganizationInviteLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OrganizationInviteLink, <__D as Deserializer<'de>>::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) -> JsValue
fn from(value: OrganizationInviteLink) -> JsValue
Converts to this type from the input type.
Source§impl FromWasmAbi for OrganizationInviteLink
impl FromWasmAbi for OrganizationInviteLink
Source§type Abi = <JsType as FromWasmAbi>::Abi
type Abi = <JsType as FromWasmAbi>::Abi
The Wasm ABI type that this converts from when coming back out from the
ABI boundary.
Source§unsafe fn from_abi(
js: <OrganizationInviteLink as FromWasmAbi>::Abi,
) -> OrganizationInviteLink
unsafe fn from_abi( js: <OrganizationInviteLink as FromWasmAbi>::Abi, ) -> OrganizationInviteLink
Source§impl IntoWasmAbi for &OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl IntoWasmAbi for &OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
Source§type Abi = <JsType as IntoWasmAbi>::Abi
type Abi = <JsType as IntoWasmAbi>::Abi
The Wasm ABI type that this converts into when crossing the ABI
boundary.
Source§fn into_abi(self) -> <&OrganizationInviteLink as IntoWasmAbi>::Abi
fn into_abi(self) -> <&OrganizationInviteLink as IntoWasmAbi>::Abi
Convert
self into Self::Abi so that it can be sent across the wasm
ABI boundary.Source§impl IntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl IntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
Source§type Abi = <JsType as IntoWasmAbi>::Abi
type Abi = <JsType as IntoWasmAbi>::Abi
The Wasm ABI type that this converts into when crossing the ABI
boundary.
Source§fn into_abi(self) -> <OrganizationInviteLink as IntoWasmAbi>::Abi
fn into_abi(self) -> <OrganizationInviteLink as IntoWasmAbi>::Abi
Convert
self into Self::Abi so that it can be sent across the wasm
ABI boundary.Source§impl OptionFromWasmAbi for OrganizationInviteLink
impl OptionFromWasmAbi for OrganizationInviteLink
Source§fn is_none(js: &<OrganizationInviteLink as FromWasmAbi>::Abi) -> bool
fn is_none(js: &<OrganizationInviteLink as FromWasmAbi>::Abi) -> bool
Tests whether the argument is a “none” instance. If so it will be
deserialized as
None, and otherwise it will be passed to
FromWasmAbi.Source§impl OptionIntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
impl OptionIntoWasmAbi for OrganizationInviteLinkwhere
OrganizationInviteLink: Serialize,
Source§fn none() -> <OrganizationInviteLink as IntoWasmAbi>::Abi
fn none() -> <OrganizationInviteLink as IntoWasmAbi>::Abi
Returns an ABI instance indicating “none”, which JS will interpret as
the
None branch of this option. Read moreSource§impl RefFromWasmAbi for OrganizationInviteLink
impl RefFromWasmAbi for OrganizationInviteLink
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§unsafe fn ref_from_abi(
js: <OrganizationInviteLink as RefFromWasmAbi>::Abi,
) -> <OrganizationInviteLink as RefFromWasmAbi>::Anchor
unsafe fn ref_from_abi( js: <OrganizationInviteLink as RefFromWasmAbi>::Abi, ) -> <OrganizationInviteLink as RefFromWasmAbi>::Anchor
Source§impl Serialize for OrganizationInviteLink
impl Serialize for OrganizationInviteLink
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<OrganizationInviteLinkResponseModel> for OrganizationInviteLink
impl TryFrom<OrganizationInviteLinkResponseModel> for OrganizationInviteLink
Source§type Error = InviteLinkError
type Error = InviteLinkError
The type returned in the event of a conversion error.
Source§fn try_from(
response: OrganizationInviteLinkResponseModel,
) -> Result<OrganizationInviteLink, <OrganizationInviteLink as TryFrom<OrganizationInviteLinkResponseModel>>::Error>
fn try_from( response: OrganizationInviteLinkResponseModel, ) -> Result<OrganizationInviteLink, <OrganizationInviteLink as TryFrom<OrganizationInviteLinkResponseModel>>::Error>
Performs the conversion.
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 OrganizationInviteLink
impl VectorFromWasmAbi for OrganizationInviteLink
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi( js: <OrganizationInviteLink as VectorFromWasmAbi>::Abi, ) -> Box<[OrganizationInviteLink]>
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<[OrganizationInviteLink]>, ) -> <OrganizationInviteLink as VectorIntoWasmAbi>::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.