pub struct CreatePackInvitationResponse {
pub invitation_id: String,
}Expand description
Confirmation of successfully creating a Pack invitation.
JSON schema
{
"description": "Confirmation of successfully creating a Pack
invitation.",
"type": "object",
"required": [
"invitationId"
],
"properties": {
"invitationId": {
"description": "The ID of the invitation created.",
"examples": [
"550e8400-e29b-41d4-a716-446655440000"
],
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "CreatePackInvitationResponse"
}Fields§
§invitation_id: StringThe ID of the invitation created.
Trait Implementations§
Source§impl Clone for CreatePackInvitationResponse
impl Clone for CreatePackInvitationResponse
Source§fn clone(&self) -> CreatePackInvitationResponse
fn clone(&self) -> CreatePackInvitationResponse
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 CreatePackInvitationResponse
impl Debug for CreatePackInvitationResponse
Source§impl<'de> Deserialize<'de> for CreatePackInvitationResponse
impl<'de> Deserialize<'de> for CreatePackInvitationResponse
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<&CreatePackInvitationResponse> for CreatePackInvitationResponse
impl From<&CreatePackInvitationResponse> for CreatePackInvitationResponse
Source§fn from(value: &CreatePackInvitationResponse) -> Self
fn from(value: &CreatePackInvitationResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreatePackInvitationResponse
impl RefUnwindSafe for CreatePackInvitationResponse
impl Send for CreatePackInvitationResponse
impl Sync for CreatePackInvitationResponse
impl Unpin for CreatePackInvitationResponse
impl UnwindSafe for CreatePackInvitationResponse
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