pub struct AuditLogProjectCreatedData {
pub name: String,
pub title: Option<String>,
}
Expand description
The payload used to create the project.
Fields§
§name: String
The project name.
title: Option<String>
The title of the project as seen on the dashboard.
Trait Implementations§
Source§impl Debug for AuditLogProjectCreatedData
impl Debug for AuditLogProjectCreatedData
Source§impl<'de> Deserialize<'de> for AuditLogProjectCreatedData
impl<'de> Deserialize<'de> for AuditLogProjectCreatedData
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 AuditLogProjectCreatedData
impl RefUnwindSafe for AuditLogProjectCreatedData
impl Send for AuditLogProjectCreatedData
impl Sync for AuditLogProjectCreatedData
impl Unpin for AuditLogProjectCreatedData
impl UnwindSafe for AuditLogProjectCreatedData
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