pub struct UserUpdated {
pub id: Option<String>,
pub changes_requested: Option<ChangesRequested>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The project ID.
changes_requested: Option<ChangesRequested>
The payload used to update the user.
Implementations§
Trait Implementations§
Source§impl Clone for UserUpdated
impl Clone for UserUpdated
Source§fn clone(&self) -> UserUpdated
fn clone(&self) -> UserUpdated
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 UserUpdated
impl Debug for UserUpdated
Source§impl Default for UserUpdated
impl Default for UserUpdated
Source§fn default() -> UserUpdated
fn default() -> UserUpdated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserUpdated
impl<'de> Deserialize<'de> for UserUpdated
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 UserUpdated
impl PartialEq for UserUpdated
Source§impl Serialize for UserUpdated
impl Serialize for UserUpdated
impl StructuralPartialEq for UserUpdated
Auto Trait Implementations§
impl Freeze for UserUpdated
impl RefUnwindSafe for UserUpdated
impl Send for UserUpdated
impl Sync for UserUpdated
impl Unpin for UserUpdated
impl UnwindSafe for UserUpdated
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