pub enum MergerType {
PushMerger,
ListMerger,
}Expand description
Which merger to use.
JSON schema
{
"description": "Which merger to use.",
"type": "string",
"enum": [
"push_merger",
"list_merger"
]
}Variants§
Trait Implementations§
Source§impl Clone for MergerType
impl Clone for MergerType
Source§fn clone(&self) -> MergerType
fn clone(&self) -> MergerType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MergerType
impl Debug for MergerType
Source§impl<'de> Deserialize<'de> for MergerType
impl<'de> Deserialize<'de> for MergerType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&MergerType> for MergerType
impl From<&MergerType> for MergerType
Source§fn from(value: &MergerType) -> Self
fn from(value: &MergerType) -> Self
Converts to this type from the input type.
Source§impl FromStr for MergerType
impl FromStr for MergerType
Source§impl Hash for MergerType
impl Hash for MergerType
Source§impl Ord for MergerType
impl Ord for MergerType
Source§fn cmp(&self, other: &MergerType) -> Ordering
fn cmp(&self, other: &MergerType) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MergerType
impl PartialEq for MergerType
Source§fn eq(&self, other: &MergerType) -> bool
fn eq(&self, other: &MergerType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MergerType
impl PartialOrd for MergerType
Source§impl Serialize for MergerType
impl Serialize for MergerType
Source§impl ToString for MergerType
impl ToString for MergerType
Source§impl TryFrom<&String> for MergerType
impl TryFrom<&String> for MergerType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for MergerType
impl TryFrom<&str> for MergerType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for MergerType
impl TryFrom<String> for MergerType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for MergerType
impl Eq for MergerType
impl StructuralPartialEq for MergerType
Auto Trait Implementations§
impl Freeze for MergerType
impl RefUnwindSafe for MergerType
impl Send for MergerType
impl Sync for MergerType
impl Unpin for MergerType
impl UnsafeUnpin for MergerType
impl UnwindSafe for MergerType
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> Comparable<K> for Q
impl<Q, K> Comparable<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.