#[non_exhaustive]pub enum ErasedZipOp {
Add,
Subtract,
Multiply,
Divide,
Remainder,
Maximum,
Minimum,
}Expand description
Runtime binary operation for erased_zip_into.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ErasedZipOp
impl Clone for ErasedZipOp
Source§fn clone(&self) -> ErasedZipOp
fn clone(&self) -> ErasedZipOp
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 moreimpl Copy for ErasedZipOp
Source§impl Debug for ErasedZipOp
impl Debug for ErasedZipOp
impl Eq for ErasedZipOp
Source§impl PartialEq for ErasedZipOp
impl PartialEq for ErasedZipOp
impl StructuralPartialEq for ErasedZipOp
Auto Trait Implementations§
impl Freeze for ErasedZipOp
impl RefUnwindSafe for ErasedZipOp
impl Send for ErasedZipOp
impl Sync for ErasedZipOp
impl Unpin for ErasedZipOp
impl UnsafeUnpin for ErasedZipOp
impl UnwindSafe for ErasedZipOp
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