#[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
impl StructuralPartialEq for TabularConditionsBuilder
Auto Trait Implementations§
impl Freeze for TabularConditionsBuilder
impl RefUnwindSafe for TabularConditionsBuilder
impl Send for TabularConditionsBuilder
impl Sync for TabularConditionsBuilder
impl Unpin for TabularConditionsBuilder
impl UnwindSafe for TabularConditionsBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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