#[non_exhaustive]pub struct TabularConditionsBuilder { /* private fields */ }Expand description
A builder for TabularConditions.
Implementations§
source§impl TabularConditionsBuilder
impl TabularConditionsBuilder
sourcepub fn order_by(self, input: OrderBy) -> Self
pub fn order_by(self, input: OrderBy) -> Self
Appends an item to order_by.
To override the contents of this collection use set_order_by.
Filter criteria that orders the output. It can be sorted in ascending or descending order.
sourcepub fn set_order_by(self, input: Option<Vec<OrderBy>>) -> Self
pub fn set_order_by(self, input: Option<Vec<OrderBy>>) -> Self
Filter criteria that orders the output. It can be sorted in ascending or descending order.
sourcepub fn get_order_by(&self) -> &Option<Vec<OrderBy>>
pub fn get_order_by(&self) -> &Option<Vec<OrderBy>>
Filter criteria that orders the output. It can be sorted in ascending or descending order.
sourcepub fn property_filters(self, input: PropertyFilter) -> Self
pub fn property_filters(self, input: PropertyFilter) -> Self
Appends an item to property_filters.
To override the contents of this collection use set_property_filters.
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
sourcepub fn set_property_filters(self, input: Option<Vec<PropertyFilter>>) -> Self
pub fn set_property_filters(self, input: Option<Vec<PropertyFilter>>) -> Self
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
sourcepub fn get_property_filters(&self) -> &Option<Vec<PropertyFilter>>
pub fn get_property_filters(&self) -> &Option<Vec<PropertyFilter>>
You can filter the request using various logical operators and a key-value format. For example:
{"key": "serverType", "value": "webServer"}
sourcepub fn build(self) -> TabularConditions
pub fn build(self) -> TabularConditions
Consumes the builder and constructs a TabularConditions.
Trait Implementations§
source§impl Clone for TabularConditionsBuilder
impl Clone for TabularConditionsBuilder
source§fn clone(&self) -> TabularConditionsBuilder
fn clone(&self) -> TabularConditionsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TabularConditionsBuilder
impl Debug for TabularConditionsBuilder
source§impl Default for TabularConditionsBuilder
impl Default for TabularConditionsBuilder
source§fn default() -> TabularConditionsBuilder
fn default() -> TabularConditionsBuilder
source§impl PartialEq for TabularConditionsBuilder
impl PartialEq for TabularConditionsBuilder
source§fn eq(&self, other: &TabularConditionsBuilder) -> bool
fn eq(&self, other: &TabularConditionsBuilder) -> bool
self and other values to be equal, and is used
by ==.