pub struct ProjectGroupDeletedResource {
pub object: String,
pub deleted: bool,
}Available on crate feature
administration-types only.Expand description
Confirmation payload returned after removing a group from a project.
Fields§
§object: StringThe object type, which is always project.group.deleted.
deleted: boolWhether the group membership in the project was removed.
Trait Implementations§
Source§impl Clone for ProjectGroupDeletedResource
impl Clone for ProjectGroupDeletedResource
Source§fn clone(&self) -> ProjectGroupDeletedResource
fn clone(&self) -> ProjectGroupDeletedResource
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 ProjectGroupDeletedResource
impl Debug for ProjectGroupDeletedResource
Source§impl<'de> Deserialize<'de> for ProjectGroupDeletedResource
impl<'de> Deserialize<'de> for ProjectGroupDeletedResource
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
impl StructuralPartialEq for ProjectGroupDeletedResource
Auto Trait Implementations§
impl Freeze for ProjectGroupDeletedResource
impl RefUnwindSafe for ProjectGroupDeletedResource
impl Send for ProjectGroupDeletedResource
impl Sync for ProjectGroupDeletedResource
impl Unpin for ProjectGroupDeletedResource
impl UnwindSafe for ProjectGroupDeletedResource
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