pub struct UnionWith {
pub coll: String,
pub pipeline: Option<Vec<Value>>,
}Expand description
A $unionWith stage (similar to UNION ALL).
Fields§
§coll: StringCollection to union with.
pipeline: Option<Vec<Value>>Optional pipeline to apply before union.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UnionWith
impl<'de> Deserialize<'de> for UnionWith
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
impl StructuralPartialEq for UnionWith
Auto Trait Implementations§
impl Freeze for UnionWith
impl RefUnwindSafe for UnionWith
impl Send for UnionWith
impl Sync for UnionWith
impl Unpin for UnionWith
impl UnwindSafe for UnionWith
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