pub struct HandlePackInvitationResponse {
pub permission_id: Option<String>,
}Expand description
Confirmation of successfully handling a Pack invitation.
JSON schema
{
"description": "Confirmation of successfully handling a Pack
invitation.",
"type": "object",
"properties": {
"permissionId": {
"description": "The ID of the permission that was created. Only
returned when accepting the invitation.",
"type": "string"
}
},
"additionalProperties": false,
"x-schema-name": "HandlePackInvitationResponse"
}Fields§
§permission_id: Option<String>The ID of the permission that was created. Only returned when accepting the invitation.
Trait Implementations§
Source§impl Clone for HandlePackInvitationResponse
impl Clone for HandlePackInvitationResponse
Source§fn clone(&self) -> HandlePackInvitationResponse
fn clone(&self) -> HandlePackInvitationResponse
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 HandlePackInvitationResponse
impl Debug for HandlePackInvitationResponse
Source§impl<'de> Deserialize<'de> for HandlePackInvitationResponse
impl<'de> Deserialize<'de> for HandlePackInvitationResponse
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<&HandlePackInvitationResponse> for HandlePackInvitationResponse
impl From<&HandlePackInvitationResponse> for HandlePackInvitationResponse
Source§fn from(value: &HandlePackInvitationResponse) -> Self
fn from(value: &HandlePackInvitationResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HandlePackInvitationResponse
impl RefUnwindSafe for HandlePackInvitationResponse
impl Send for HandlePackInvitationResponse
impl Sync for HandlePackInvitationResponse
impl Unpin for HandlePackInvitationResponse
impl UnwindSafe for HandlePackInvitationResponse
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