Struct google_sheets4::DataFilter
source · pub struct DataFilter {
pub developer_metadata_lookup: Option<DeveloperMetadataLookup>,
pub a1_range: Option<String>,
pub grid_range: Option<GridRange>,
}Expand description
Filter that describes what data should be selected or returned from a request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§developer_metadata_lookup: Option<DeveloperMetadataLookup>Selects data associated with the developer metadata matching the criteria described by this DeveloperMetadataLookup.
a1_range: Option<String>Selects data that matches the specified A1 range.
grid_range: Option<GridRange>Selects data that matches the range described by the GridRange.
Trait Implementations§
source§impl Clone for DataFilter
impl Clone for DataFilter
source§fn clone(&self) -> DataFilter
fn clone(&self) -> DataFilter
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 DataFilter
impl Debug for DataFilter
source§impl Default for DataFilter
impl Default for DataFilter
source§fn default() -> DataFilter
fn default() -> DataFilter
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DataFilter
impl<'de> Deserialize<'de> for DataFilter
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