pub struct AuditLogProjectCreatedData {
pub name: Option<String>,
pub title: Option<String>,
}
Expand description
The payload used to create the project.
Fields§
§name: Option<String>
The project name.
title: Option<String>
The title of the project as seen on the dashboard.
Implementations§
Source§impl AuditLogProjectCreatedData
impl AuditLogProjectCreatedData
Sourcepub fn builder() -> AuditLogProjectCreatedDataBuilder<((), ())>
pub fn builder() -> AuditLogProjectCreatedDataBuilder<((), ())>
Create a builder for building AuditLogProjectCreatedData
.
On the builder, call .name(...)
(optional), .title(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogProjectCreatedData
.
Trait Implementations§
Source§impl Clone for AuditLogProjectCreatedData
impl Clone for AuditLogProjectCreatedData
Source§fn clone(&self) -> AuditLogProjectCreatedData
fn clone(&self) -> AuditLogProjectCreatedData
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 AuditLogProjectCreatedData
impl Debug for AuditLogProjectCreatedData
Source§impl Default for AuditLogProjectCreatedData
impl Default for AuditLogProjectCreatedData
Source§fn default() -> AuditLogProjectCreatedData
fn default() -> AuditLogProjectCreatedData
Returns the “default value” for a type. Read more
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
impl StructuralPartialEq for AuditLogProjectCreatedData
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