pub enum TermsExclude {
Regex(String),
Exact(Vec<String>),
}
Expand description
Filter the values for which buckets will be created.
Variants§
Trait Implementations§
Source§impl Clone for TermsExclude
impl Clone for TermsExclude
Source§fn clone(&self) -> TermsExclude
fn clone(&self) -> TermsExclude
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 TermsExclude
impl Debug for TermsExclude
Source§impl From<&[&str]> for TermsExclude
impl From<&[&str]> for TermsExclude
Source§impl From<&str> for TermsExclude
impl From<&str> for TermsExclude
Source§impl From<String> for TermsExclude
impl From<String> for TermsExclude
Source§impl PartialEq for TermsExclude
impl PartialEq for TermsExclude
Source§impl Serialize for TermsExclude
impl Serialize for TermsExclude
impl StructuralPartialEq for TermsExclude
Auto Trait Implementations§
impl Freeze for TermsExclude
impl RefUnwindSafe for TermsExclude
impl Send for TermsExclude
impl Sync for TermsExclude
impl Unpin for TermsExclude
impl UnwindSafe for TermsExclude
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