pub struct CreateInvitationScope {
pub scope_type: String,
pub scope: String,
pub name: String,
}Expand description
Group information for creating invitations
Fields§
§scope_type: StringGroup type (e.g., “team”, “organization”)
scope: StringYour internal group ID
name: StringDisplay name of the group
Implementations§
Trait Implementations§
Source§impl Clone for CreateInvitationScope
impl Clone for CreateInvitationScope
Source§fn clone(&self) -> CreateInvitationScope
fn clone(&self) -> CreateInvitationScope
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 CreateInvitationScope
impl Debug for CreateInvitationScope
Source§impl<'de> Deserialize<'de> for CreateInvitationScope
impl<'de> Deserialize<'de> for CreateInvitationScope
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 CreateInvitationScope
impl RefUnwindSafe for CreateInvitationScope
impl Send for CreateInvitationScope
impl Sync for CreateInvitationScope
impl Unpin for CreateInvitationScope
impl UnsafeUnpin for CreateInvitationScope
impl UnwindSafe for CreateInvitationScope
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