Struct google_sheets4::GridProperties
source · pub struct GridProperties {
pub column_count: Option<i32>,
pub row_count: Option<i32>,
pub row_group_control_after: Option<bool>,
pub column_group_control_after: Option<bool>,
pub hide_gridlines: Option<bool>,
pub frozen_row_count: Option<i32>,
pub frozen_column_count: Option<i32>,
}Expand description
Properties of a grid.
This type is not used in any activity, and only used as part of another schema.
Fields§
§column_count: Option<i32>The number of columns in the grid.
row_count: Option<i32>The number of rows in the grid.
row_group_control_after: Option<bool>True if the row grouping control toggle is shown after the group.
column_group_control_after: Option<bool>True if the column grouping control toggle is shown after the group.
hide_gridlines: Option<bool>True if the grid isn’t showing gridlines in the UI.
frozen_row_count: Option<i32>The number of rows that are frozen in the grid.
frozen_column_count: Option<i32>The number of columns that are frozen in the grid.
Trait Implementations§
source§impl Clone for GridProperties
impl Clone for GridProperties
source§fn clone(&self) -> GridProperties
fn clone(&self) -> GridProperties
Returns a copy 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 GridProperties
impl Debug for GridProperties
source§impl Default for GridProperties
impl Default for GridProperties
source§fn default() -> GridProperties
fn default() -> GridProperties
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GridProperties
impl<'de> Deserialize<'de> for GridProperties
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
source§impl Serialize for GridProperties
impl Serialize for GridProperties
impl Part for GridProperties
Auto Trait Implementations§
impl Freeze for GridProperties
impl RefUnwindSafe for GridProperties
impl Send for GridProperties
impl Sync for GridProperties
impl Unpin for GridProperties
impl UnwindSafe for GridProperties
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more