pub struct AuditEntry {
pub request_id: String,
pub at: String,
pub ecosystem: String,
pub package: String,
pub version: String,
pub decision: String,
pub reason: String,
pub verdict_id: Option<String>,
}Expand description
One audit log entry returned from GET /v1/customer/audit.
Fields§
§request_id: String§at: String§ecosystem: String§package: String§version: String§decision: String§reason: String§verdict_id: Option<String>Trait Implementations§
Source§impl Clone for AuditEntry
impl Clone for AuditEntry
Source§fn clone(&self) -> AuditEntry
fn clone(&self) -> AuditEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuditEntry
impl Debug for AuditEntry
Source§impl Default for AuditEntry
impl Default for AuditEntry
Source§fn default() -> AuditEntry
fn default() -> AuditEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditEntrywhere
AuditEntry: Default,
impl<'de> Deserialize<'de> for AuditEntrywhere
AuditEntry: Default,
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 AuditEntry
impl RefUnwindSafe for AuditEntry
impl Send for AuditEntry
impl Sync for AuditEntry
impl Unpin for AuditEntry
impl UnsafeUnpin for AuditEntry
impl UnwindSafe for AuditEntry
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