Struct perspective_client::proto::ViewConfig
source · pub struct ViewConfig {
pub group_by: Vec<String>,
pub split_by: Vec<String>,
pub columns: Option<ColumnsUpdate>,
pub filter: Vec<Filter>,
pub sort: Vec<Sort>,
pub expressions: HashMap<String, String>,
pub aggregates: HashMap<String, AggList>,
pub filter_op: i32,
pub group_by_depth: Option<u32>,
}Fields§
§group_by: Vec<String>§split_by: Vec<String>§columns: Option<ColumnsUpdate>§filter: Vec<Filter>§sort: Vec<Sort>§expressions: HashMap<String, String>§aggregates: HashMap<String, AggList>§filter_op: i32§group_by_depth: Option<u32>Implementations§
source§impl ViewConfig
impl ViewConfig
sourcepub fn filter_op(&self) -> FilterReducer
pub fn filter_op(&self) -> FilterReducer
Returns the enum value of filter_op, or the default if the field is set to an invalid enum value.
sourcepub fn set_filter_op(&mut self, value: FilterReducer)
pub fn set_filter_op(&mut self, value: FilterReducer)
Sets filter_op to the provided enum value.
sourcepub fn group_by_depth(&self) -> u32
pub fn group_by_depth(&self) -> u32
Returns the value of group_by_depth, or the default value if group_by_depth is unset.
Trait Implementations§
source§impl Clone for ViewConfig
impl Clone for ViewConfig
source§fn clone(&self) -> ViewConfig
fn clone(&self) -> ViewConfig
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 ViewConfig
impl Debug for ViewConfig
source§impl Default for ViewConfig
impl Default for ViewConfig
source§impl From<ViewConfig> for ViewConfig
impl From<ViewConfig> for ViewConfig
source§fn from(value: ViewConfig) -> Self
fn from(value: ViewConfig) -> Self
Converts to this type from the input type.
source§impl From<ViewConfigUpdate> for ViewConfig
impl From<ViewConfigUpdate> for ViewConfig
source§fn from(value: ViewConfigUpdate) -> Self
fn from(value: ViewConfigUpdate) -> Self
Converts to this type from the input type.
source§impl Message for ViewConfig
impl Message for ViewConfig
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.source§impl PartialEq for ViewConfig
impl PartialEq for ViewConfig
source§impl Serialize for ViewConfig
impl Serialize for ViewConfig
impl StructuralPartialEq for ViewConfig
Auto Trait Implementations§
impl Freeze for ViewConfig
impl RefUnwindSafe for ViewConfig
impl Send for ViewConfig
impl Sync for ViewConfig
impl Unpin for ViewConfig
impl UnwindSafe for ViewConfig
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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