Struct google_sheets4::api::DeveloperMetadataLookup [−][src]
Selects DeveloperMetadata that matches all of the specified fields. For example, if only a metadata ID is specified this considers the DeveloperMetadata with that particular unique ID. If a metadata key is specified, this considers all developer metadata with that key. If a key, visibility, and location type are all specified, this considers all developer metadata with that key and visibility that are associated with a location of that type. In general, this selects all DeveloperMetadata that matches the intersection of all the specified fields; any field or combination of fields may be specified.
This type is not used in any activity, and only used as part of another schema.
Fields
location_matching_strategy: Option<String>Determines how this lookup matches the location. If this field is specified as EXACT, only developer metadata associated on the exact location specified is matched. If this field is specified to INTERSECTING, developer metadata associated on intersecting locations is also matched. If left unspecified, this field assumes a default value of INTERSECTING. If this field is specified, a metadataLocation must also be specified.
location_type: Option<String>Limits the selected developer metadata to those entries which are associated with locations of the specified type. For example, when this field is specified as ROW this lookup only considers developer metadata associated on rows. If the field is left unspecified, all location types are considered. This field cannot be specified as SPREADSHEET when the locationMatchingStrategy is specified as INTERSECTING or when the metadataLocation is specified as a non-spreadsheet location: spreadsheet metadata cannot intersect any other developer metadata location. This field also must be left unspecified when the locationMatchingStrategy is specified as EXACT.
metadata_id: Option<i32>Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_id.
metadata_key: Option<String>Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_key.
metadata_location: Option<DeveloperMetadataLocation>Limits the selected developer metadata to those entries associated with the specified location. This field either matches exact locations or all intersecting locations according the specified locationMatchingStrategy.
metadata_value: Option<String>Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_value.
visibility: Option<String>Limits the selected developer metadata to that which has a matching DeveloperMetadata.visibility. If left unspecified, all developer metadata visibile to the requesting project is considered.
Trait Implementations
impl Clone for DeveloperMetadataLookup[src]
fn clone(&self) -> DeveloperMetadataLookup[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for DeveloperMetadataLookup[src]
impl Default for DeveloperMetadataLookup[src]
fn default() -> DeveloperMetadataLookup[src]
impl<'de> Deserialize<'de> for DeveloperMetadataLookup[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for DeveloperMetadataLookup[src]
impl Serialize for DeveloperMetadataLookup[src]
Auto Trait Implementations
impl RefUnwindSafe for DeveloperMetadataLookup[src]
impl Send for DeveloperMetadataLookup[src]
impl Sync for DeveloperMetadataLookup[src]
impl Unpin for DeveloperMetadataLookup[src]
impl UnwindSafe for DeveloperMetadataLookup[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,