pub struct AuditLogProjectCreated {
pub id: String,
pub data: Option<AuditLogProjectCreatedData>,
}
Expand description
The details for events with the type project.created
.
Fields§
§id: String
The project ID.
data: Option<AuditLogProjectCreatedData>
The payload used to create the project.
Trait Implementations§
Source§impl Debug for AuditLogProjectCreated
impl Debug for AuditLogProjectCreated
Source§impl<'de> Deserialize<'de> for AuditLogProjectCreated
impl<'de> Deserialize<'de> for AuditLogProjectCreated
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 AuditLogProjectCreated
impl RefUnwindSafe for AuditLogProjectCreated
impl Send for AuditLogProjectCreated
impl Sync for AuditLogProjectCreated
impl Unpin for AuditLogProjectCreated
impl UnwindSafe for AuditLogProjectCreated
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