pub struct LogExport {
pub id: String,
pub organisation_id: String,
pub filters: GenerationsFilter,
pub requested_data: Vec<LogExportField>,
pub status: ExportStatus,
pub description: String,
pub created_at: String,
pub last_updated_at: String,
pub created_by: String,
pub workspace_id: String,
pub object: String,
}Expand description
Log export item details
Fields§
§id: StringExport ID
organisation_id: StringOrganization ID
filters: GenerationsFilterFilters applied to this export
requested_data: Vec<LogExportField>Requested data fields
status: ExportStatusExport status
description: StringExport description
created_at: StringCreation timestamp
last_updated_at: StringLast update timestamp
created_by: StringUser who created the export
workspace_id: StringWorkspace ID
object: StringObject type (always “export”)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogExport
impl<'de> Deserialize<'de> for LogExport
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 LogExport
impl RefUnwindSafe for LogExport
impl Send for LogExport
impl Sync for LogExport
impl Unpin for LogExport
impl UnwindSafe for LogExport
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