pub struct GroupDeletedResource {
pub object: String,
pub id: String,
pub deleted: bool,
}Expand description
Confirmation payload returned after deleting a group.
Fields§
§object: StringThe object type, which is always group.deleted.
id: StringIdentifier of the deleted group.
deleted: boolWhether the group was deleted.
Trait Implementations§
Source§impl Clone for GroupDeletedResource
impl Clone for GroupDeletedResource
Source§fn clone(&self) -> GroupDeletedResource
fn clone(&self) -> GroupDeletedResource
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 GroupDeletedResource
impl Debug for GroupDeletedResource
Source§impl<'de> Deserialize<'de> for GroupDeletedResource
impl<'de> Deserialize<'de> for GroupDeletedResource
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 GroupDeletedResource
impl PartialEq for GroupDeletedResource
Source§impl Serialize for GroupDeletedResource
impl Serialize for GroupDeletedResource
impl StructuralPartialEq for GroupDeletedResource
Auto Trait Implementations§
impl Freeze for GroupDeletedResource
impl RefUnwindSafe for GroupDeletedResource
impl Send for GroupDeletedResource
impl Sync for GroupDeletedResource
impl Unpin for GroupDeletedResource
impl UnwindSafe for GroupDeletedResource
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