Struct sheets::types::FilterView
source · pub struct FilterView {
pub criteria: Option<FilterCriteria>,
pub filter_specs: Vec<FilterSpec>,
pub filter_view_id: i64,
pub named_range_id: String,
pub range: Option<GridRange>,
pub sort_specs: Vec<SortSpec>,
pub title: String,
}
Expand description
A filter view.
Fields
criteria: Option<FilterCriteria>
A filter view.
filter_specs: Vec<FilterSpec>
A filter view.
filter_view_id: i64
A filter view.
named_range_id: String
A filter view.
range: Option<GridRange>
A filter view.
sort_specs: Vec<SortSpec>
A filter view.
title: String
A filter view.
Trait Implementations
sourceimpl Clone for FilterView
impl Clone for FilterView
sourcefn clone(&self) -> FilterView
fn clone(&self) -> FilterView
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FilterView
impl Debug for FilterView
sourceimpl<'de> Deserialize<'de> for FilterView
impl<'de> Deserialize<'de> for FilterView
sourcefn 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
sourceimpl JsonSchema for FilterView
impl JsonSchema for FilterView
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<FilterView> for FilterView
impl PartialEq<FilterView> for FilterView
sourcefn eq(&self, other: &FilterView) -> bool
fn eq(&self, other: &FilterView) -> bool
sourceimpl Serialize for FilterView
impl Serialize for FilterView
impl StructuralPartialEq for FilterView
Auto Trait Implementations
impl RefUnwindSafe for FilterView
impl Send for FilterView
impl Sync for FilterView
impl Unpin for FilterView
impl UnwindSafe for FilterView
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more