pub struct GoogleSheetsExportSettings {
pub enabled: Option<bool>,
pub spreadsheet_id: Option<String>,
pub spreadsheet_url: Option<String>,
pub sheet_id: Option<f64>,
pub updated_at: Option<DateTime<Utc>>,
}Fields§
§enabled: Option<bool>Whether the export is enabled.
spreadsheet_id: Option<String>The ID of the exported Google Sheet.
spreadsheet_url: Option<String>The URL of the exported Google Sheet.
sheet_id: Option<f64>The ID of the target sheet (tab) within the Google Sheet.
updated_at: Option<DateTime<Utc>>The date of the most recent export.
Trait Implementations§
Source§impl Clone for GoogleSheetsExportSettings
impl Clone for GoogleSheetsExportSettings
Source§fn clone(&self) -> GoogleSheetsExportSettings
fn clone(&self) -> GoogleSheetsExportSettings
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 GoogleSheetsExportSettings
impl Debug for GoogleSheetsExportSettings
Source§impl Default for GoogleSheetsExportSettings
impl Default for GoogleSheetsExportSettings
Source§fn default() -> GoogleSheetsExportSettings
fn default() -> GoogleSheetsExportSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleSheetsExportSettings
impl<'de> Deserialize<'de> for GoogleSheetsExportSettings
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 GoogleSheetsExportSettings
impl RefUnwindSafe for GoogleSheetsExportSettings
impl Send for GoogleSheetsExportSettings
impl Sync for GoogleSheetsExportSettings
impl Unpin for GoogleSheetsExportSettings
impl UnwindSafe for GoogleSheetsExportSettings
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