pub struct AuditLogProjectCreated {
pub id: Option<String>,
pub data: Option<AuditLogProjectCreatedData>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The project ID.
data: Option<AuditLogProjectCreatedData>
The payload used to create the project.
Implementations§
Trait Implementations§
Source§impl Clone for AuditLogProjectCreated
impl Clone for AuditLogProjectCreated
Source§fn clone(&self) -> AuditLogProjectCreated
fn clone(&self) -> AuditLogProjectCreated
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 AuditLogProjectCreated
impl Debug for AuditLogProjectCreated
Source§impl Default for AuditLogProjectCreated
impl Default for AuditLogProjectCreated
Source§fn default() -> AuditLogProjectCreated
fn default() -> AuditLogProjectCreated
Returns the “default value” for a type. Read more
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
Source§impl PartialEq for AuditLogProjectCreated
impl PartialEq for AuditLogProjectCreated
Source§impl Serialize for AuditLogProjectCreated
impl Serialize for AuditLogProjectCreated
impl StructuralPartialEq for AuditLogProjectCreated
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