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