pub struct CreateLogExportRequest {
pub workspace_id: Option<String>,
pub filters: GenerationsFilter,
pub requested_data: Vec<LogExportField>,
pub description: Option<String>,
}Expand description
Request to create a log export
Fields§
§workspace_id: Option<String>Workspace ID
filters: GenerationsFilterFilters to apply to the export
requested_data: Vec<LogExportField>Fields to include in the export
description: Option<String>Description of the export
Trait Implementations§
Source§impl Clone for CreateLogExportRequest
impl Clone for CreateLogExportRequest
Source§fn clone(&self) -> CreateLogExportRequest
fn clone(&self) -> CreateLogExportRequest
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 CreateLogExportRequest
impl Debug for CreateLogExportRequest
Source§impl<'de> Deserialize<'de> for CreateLogExportRequest
impl<'de> Deserialize<'de> for CreateLogExportRequest
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 CreateLogExportRequest
impl RefUnwindSafe for CreateLogExportRequest
impl Send for CreateLogExportRequest
impl Sync for CreateLogExportRequest
impl Unpin for CreateLogExportRequest
impl UnwindSafe for CreateLogExportRequest
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