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