pub struct GroupDeleteEvent {
pub group: Option<Box<Group>>,
pub create_instant: Option<i64>,
pub id: Option<Uuid>,
pub info: Option<Box<EventInfo>>,
pub tenant_id: Option<Uuid>,
pub type: Option<EventType>,
}
Expand description
GroupDeleteEvent : Models the Group Delete Event.
Fields§
§group: Option<Box<Group>>
§create_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
id: Option<Uuid>
§info: Option<Box<EventInfo>>
§tenant_id: Option<Uuid>
§type: Option<EventType>
Implementations§
source§impl GroupDeleteEvent
impl GroupDeleteEvent
sourcepub fn new() -> GroupDeleteEvent
pub fn new() -> GroupDeleteEvent
Models the Group Delete Event.
Trait Implementations§
source§impl Clone for GroupDeleteEvent
impl Clone for GroupDeleteEvent
source§fn clone(&self) -> GroupDeleteEvent
fn clone(&self) -> GroupDeleteEvent
Returns a copy 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 GroupDeleteEvent
impl Debug for GroupDeleteEvent
source§impl Default for GroupDeleteEvent
impl Default for GroupDeleteEvent
source§fn default() -> GroupDeleteEvent
fn default() -> GroupDeleteEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GroupDeleteEvent
impl<'de> Deserialize<'de> for GroupDeleteEvent
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 GroupDeleteEvent
impl PartialEq for GroupDeleteEvent
source§fn eq(&self, other: &GroupDeleteEvent) -> bool
fn eq(&self, other: &GroupDeleteEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GroupDeleteEvent
impl Serialize for GroupDeleteEvent
impl StructuralPartialEq for GroupDeleteEvent
Auto Trait Implementations§
impl RefUnwindSafe for GroupDeleteEvent
impl Send for GroupDeleteEvent
impl Sync for GroupDeleteEvent
impl Unpin for GroupDeleteEvent
impl UnwindSafe for GroupDeleteEvent
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