pub struct GridProperties {
pub column_count: Option<i32>,
pub column_group_control_after: Option<bool>,
pub frozen_column_count: Option<i32>,
pub frozen_row_count: Option<i32>,
pub hide_gridlines: Option<bool>,
pub row_count: Option<i32>,
pub row_group_control_after: Option<bool>,
}
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.
column_group_control_after: Option<bool>
True if the column grouping control toggle is shown after the group.
frozen_column_count: Option<i32>
The number of columns that are frozen in the grid.
frozen_row_count: Option<i32>
The number of rows that are frozen in the grid.
hide_gridlines: Option<bool>
True if the grid isn’t showing gridlines in the UI.
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.
Trait Implementations§
Source§impl Clone for GridProperties
impl Clone for GridProperties
Source§fn clone(&self) -> GridProperties
fn clone(&self) -> GridProperties
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 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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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