pub struct MapCollectOperator { /* private fields */ }Expand description
Collects key-value pairs from child rows into a single Map value.
Implementations§
Trait Implementations§
Source§impl Operator for MapCollectOperator
impl Operator for MapCollectOperator
Auto Trait Implementations§
impl Freeze for MapCollectOperator
impl !RefUnwindSafe for MapCollectOperator
impl Send for MapCollectOperator
impl Sync for MapCollectOperator
impl Unpin for MapCollectOperator
impl UnsafeUnpin for MapCollectOperator
impl !UnwindSafe for MapCollectOperator
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more