pub struct AuditExportResponse {
pub data: String,
pub format: String,
pub count: usize,
}Expand description
Response from POST /v1/audit/export (OBS-1).
Fields§
§data: String§format: String§count: usizeTrait Implementations§
Source§impl Clone for AuditExportResponse
impl Clone for AuditExportResponse
Source§fn clone(&self) -> AuditExportResponse
fn clone(&self) -> AuditExportResponse
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 AuditExportResponse
impl Debug for AuditExportResponse
Source§impl<'de> Deserialize<'de> for AuditExportResponse
impl<'de> Deserialize<'de> for AuditExportResponse
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 AuditExportResponse
impl RefUnwindSafe for AuditExportResponse
impl Send for AuditExportResponse
impl Sync for AuditExportResponse
impl Unpin for AuditExportResponse
impl UnsafeUnpin for AuditExportResponse
impl UnwindSafe for AuditExportResponse
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