pub struct InviteProjectGroupBody {
pub group_id: String,
pub role: String,
}Available on crate feature
administration-types only.Expand description
Request payload for granting a group access to a project.
Fields§
§group_id: StringIdentifier of the group to add to the project.
role: StringIdentifier of the project role to grant to the group.
Trait Implementations§
Source§impl Clone for InviteProjectGroupBody
impl Clone for InviteProjectGroupBody
Source§fn clone(&self) -> InviteProjectGroupBody
fn clone(&self) -> InviteProjectGroupBody
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 InviteProjectGroupBody
impl Debug for InviteProjectGroupBody
Source§impl<'de> Deserialize<'de> for InviteProjectGroupBody
impl<'de> Deserialize<'de> for InviteProjectGroupBody
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 PartialEq for InviteProjectGroupBody
impl PartialEq for InviteProjectGroupBody
Source§impl Serialize for InviteProjectGroupBody
impl Serialize for InviteProjectGroupBody
impl StructuralPartialEq for InviteProjectGroupBody
Auto Trait Implementations§
impl Freeze for InviteProjectGroupBody
impl RefUnwindSafe for InviteProjectGroupBody
impl Send for InviteProjectGroupBody
impl Sync for InviteProjectGroupBody
impl Unpin for InviteProjectGroupBody
impl UnwindSafe for InviteProjectGroupBody
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