pub enum PercolateSource {
Document(Value),
Documents(Vec<Value>),
}
Expand description
Values that can be percolated
Variants§
Trait Implementations§
Source§impl Clone for PercolateSource
impl Clone for PercolateSource
Source§fn clone(&self) -> PercolateSource
fn clone(&self) -> PercolateSource
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 PercolateSource
impl Debug for PercolateSource
Source§impl PartialEq for PercolateSource
impl PartialEq for PercolateSource
Source§impl Serialize for PercolateSource
impl Serialize for PercolateSource
impl Eq for PercolateSource
impl StructuralPartialEq for PercolateSource
Auto Trait Implementations§
impl Freeze for PercolateSource
impl RefUnwindSafe for PercolateSource
impl Send for PercolateSource
impl Sync for PercolateSource
impl Unpin for PercolateSource
impl UnwindSafe for PercolateSource
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