pub struct AuditLogProject {
pub id: Option<String>,
pub name: Option<String>,
}
Expand description
The project that the action was scoped to. Absent for actions not scoped to projects.
Fields§
§id: Option<String>
The project ID.
name: Option<String>
The project title.
Implementations§
Trait Implementations§
Source§impl Clone for AuditLogProject
impl Clone for AuditLogProject
Source§fn clone(&self) -> AuditLogProject
fn clone(&self) -> AuditLogProject
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 AuditLogProject
impl Debug for AuditLogProject
Source§impl Default for AuditLogProject
impl Default for AuditLogProject
Source§fn default() -> AuditLogProject
fn default() -> AuditLogProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogProject
impl<'de> Deserialize<'de> for AuditLogProject
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 AuditLogProject
impl PartialEq for AuditLogProject
Source§impl Serialize for AuditLogProject
impl Serialize for AuditLogProject
impl StructuralPartialEq for AuditLogProject
Auto Trait Implementations§
impl Freeze for AuditLogProject
impl RefUnwindSafe for AuditLogProject
impl Send for AuditLogProject
impl Sync for AuditLogProject
impl Unpin for AuditLogProject
impl UnwindSafe for AuditLogProject
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