pub struct CreateInvitationResponse {
pub id: String,
pub short_link: String,
pub status: String,
pub created_at: String,
}Expand description
Response from creating an invitation
Fields§
§id: StringThe ID of the created invitation
short_link: StringThe short link for the invitation
status: StringThe status of the invitation
created_at: StringWhen the invitation was created
Trait Implementations§
Source§impl Clone for CreateInvitationResponse
impl Clone for CreateInvitationResponse
Source§fn clone(&self) -> CreateInvitationResponse
fn clone(&self) -> CreateInvitationResponse
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 CreateInvitationResponse
impl Debug for CreateInvitationResponse
Source§impl<'de> Deserialize<'de> for CreateInvitationResponse
impl<'de> Deserialize<'de> for CreateInvitationResponse
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 CreateInvitationResponse
impl RefUnwindSafe for CreateInvitationResponse
impl Send for CreateInvitationResponse
impl Sync for CreateInvitationResponse
impl Unpin for CreateInvitationResponse
impl UnwindSafe for CreateInvitationResponse
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