pub struct UpdatePackInvitationRequest {
pub access: PackAccessType,
}Expand description
Payload for updating a Pack invitation.
JSON schema
{
"description": "Payload for updating a Pack invitation.",
"type": "object",
"required": [
"access"
],
"properties": {
"access": {
"$ref": "#/components/schemas/PackAccessType"
}
},
"additionalProperties": false,
"x-schema-name": "UpdatePackInvitationRequest"
}Fields§
§access: PackAccessTypeTrait Implementations§
Source§impl Clone for UpdatePackInvitationRequest
impl Clone for UpdatePackInvitationRequest
Source§fn clone(&self) -> UpdatePackInvitationRequest
fn clone(&self) -> UpdatePackInvitationRequest
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 UpdatePackInvitationRequest
impl Debug for UpdatePackInvitationRequest
Source§impl<'de> Deserialize<'de> for UpdatePackInvitationRequest
impl<'de> Deserialize<'de> for UpdatePackInvitationRequest
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<&UpdatePackInvitationRequest> for UpdatePackInvitationRequest
impl From<&UpdatePackInvitationRequest> for UpdatePackInvitationRequest
Source§fn from(value: &UpdatePackInvitationRequest) -> Self
fn from(value: &UpdatePackInvitationRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UpdatePackInvitationRequest
impl RefUnwindSafe for UpdatePackInvitationRequest
impl Send for UpdatePackInvitationRequest
impl Sync for UpdatePackInvitationRequest
impl Unpin for UpdatePackInvitationRequest
impl UnwindSafe for UpdatePackInvitationRequest
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