Struct fusionauth_rust_client::models::group_delete_complete_event::GroupDeleteCompleteEvent
source · pub struct GroupDeleteCompleteEvent {
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
GroupDeleteCompleteEvent : Models the Group Create Complete 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 GroupDeleteCompleteEvent
impl GroupDeleteCompleteEvent
sourcepub fn new() -> GroupDeleteCompleteEvent
pub fn new() -> GroupDeleteCompleteEvent
Models the Group Create Complete Event.
Trait Implementations§
source§impl Clone for GroupDeleteCompleteEvent
impl Clone for GroupDeleteCompleteEvent
source§fn clone(&self) -> GroupDeleteCompleteEvent
fn clone(&self) -> GroupDeleteCompleteEvent
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 GroupDeleteCompleteEvent
impl Debug for GroupDeleteCompleteEvent
source§impl Default for GroupDeleteCompleteEvent
impl Default for GroupDeleteCompleteEvent
source§fn default() -> GroupDeleteCompleteEvent
fn default() -> GroupDeleteCompleteEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GroupDeleteCompleteEvent
impl<'de> Deserialize<'de> for GroupDeleteCompleteEvent
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 GroupDeleteCompleteEvent
impl PartialEq for GroupDeleteCompleteEvent
source§fn eq(&self, other: &GroupDeleteCompleteEvent) -> bool
fn eq(&self, other: &GroupDeleteCompleteEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GroupDeleteCompleteEvent
impl Serialize for GroupDeleteCompleteEvent
impl StructuralPartialEq for GroupDeleteCompleteEvent
Auto Trait Implementations§
impl RefUnwindSafe for GroupDeleteCompleteEvent
impl Send for GroupDeleteCompleteEvent
impl Sync for GroupDeleteCompleteEvent
impl Unpin for GroupDeleteCompleteEvent
impl UnwindSafe for GroupDeleteCompleteEvent
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