pub struct FlagUpdated {
pub object: String,
pub id: String,
pub event: String,
pub data: FlagUpdatedData,
pub created_at: String,
pub context: FlagUpdatedContext,
}Fields§
§object: StringDistinguishes the Event object.
id: StringUnique identifier for the event.
event: String§data: FlagUpdatedDataThe event payload.
created_at: StringAn ISO 8601 timestamp.
context: FlagUpdatedContextAdditional context about the event.
Trait Implementations§
Source§impl Clone for FlagUpdated
impl Clone for FlagUpdated
Source§fn clone(&self) -> FlagUpdated
fn clone(&self) -> FlagUpdated
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FlagUpdated
impl Debug for FlagUpdated
Source§impl<'de> Deserialize<'de> for FlagUpdated
impl<'de> Deserialize<'de> for FlagUpdated
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
Auto Trait Implementations§
impl Freeze for FlagUpdated
impl RefUnwindSafe for FlagUpdated
impl Send for FlagUpdated
impl Sync for FlagUpdated
impl Unpin for FlagUpdated
impl UnsafeUnpin for FlagUpdated
impl UnwindSafe for FlagUpdated
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