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