pub enum SetTransformResult<ReduceT> {
Unchanged(ReduceT),
Removed(ReduceT),
}
Expand description
SetTransformResult is the result of a transform operation on a single entry of a set.
Variants§
Trait Implementations§
Source§impl<V, ReduceT> From<SetTransformResult<ReduceT>> for MapTransformResult<V, ReduceT>
impl<V, ReduceT> From<SetTransformResult<ReduceT>> for MapTransformResult<V, ReduceT>
Source§fn from(other: SetTransformResult<ReduceT>) -> Self
fn from(other: SetTransformResult<ReduceT>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<ReduceT> Freeze for SetTransformResult<ReduceT>where
ReduceT: Freeze,
impl<ReduceT> RefUnwindSafe for SetTransformResult<ReduceT>where
ReduceT: RefUnwindSafe,
impl<ReduceT> Send for SetTransformResult<ReduceT>where
ReduceT: Send,
impl<ReduceT> Sync for SetTransformResult<ReduceT>where
ReduceT: Sync,
impl<ReduceT> Unpin for SetTransformResult<ReduceT>where
ReduceT: Unpin,
impl<ReduceT> UnwindSafe for SetTransformResult<ReduceT>where
ReduceT: UnwindSafe,
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