pub enum BytesFilter {
Exact(Vec<u8>),
Prefix(Vec<u8>),
Regex(String),
}Expand description
Matches a row’s raw value bytes by exact match, prefix, or regex. Wire
shape mirrors store.common.v1.BytesFilter.
Variants§
Trait Implementations§
Source§impl Clone for BytesFilter
impl Clone for BytesFilter
Source§fn clone(&self) -> BytesFilter
fn clone(&self) -> BytesFilter
Returns a duplicate 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 BytesFilter
impl Debug for BytesFilter
Source§impl PartialEq for BytesFilter
impl PartialEq for BytesFilter
impl Eq for BytesFilter
impl StructuralPartialEq for BytesFilter
Auto Trait Implementations§
impl Freeze for BytesFilter
impl RefUnwindSafe for BytesFilter
impl Send for BytesFilter
impl Sync for BytesFilter
impl Unpin for BytesFilter
impl UnsafeUnpin for BytesFilter
impl UnwindSafe for BytesFilter
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.