pub struct AuditResponse {
pub entries: Vec<AuditEntry>,
pub next_cursor: Option<String>,
}Expand description
Response from GET /v1/customer/audit.
Fields§
§entries: Vec<AuditEntry>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for AuditResponse
impl Clone for AuditResponse
Source§fn clone(&self) -> AuditResponse
fn clone(&self) -> AuditResponse
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 AuditResponse
impl Debug for AuditResponse
Source§impl Default for AuditResponse
impl Default for AuditResponse
Source§fn default() -> AuditResponse
fn default() -> AuditResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditResponsewhere
AuditResponse: Default,
impl<'de> Deserialize<'de> for AuditResponsewhere
AuditResponse: 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 AuditResponse
impl RefUnwindSafe for AuditResponse
impl Send for AuditResponse
impl Sync for AuditResponse
impl Unpin for AuditResponse
impl UnsafeUnpin for AuditResponse
impl UnwindSafe for AuditResponse
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