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