pub struct AuditLogProjectUpdated {
pub id: String,
pub changes_requested: Option<AuditLogProjectUpdatedChangesRequested>,
}
Expand description
The details for events with the type project.updated
.
Fields§
§id: String
The project ID.
changes_requested: Option<AuditLogProjectUpdatedChangesRequested>
The payload used to update the project.
Trait Implementations§
Source§impl Debug for AuditLogProjectUpdated
impl Debug for AuditLogProjectUpdated
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
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