pub struct BinOp<'closure, T, const INLINE_SIZE: usize = { $crate::DEFAULT_INLINE_SIZE }> { /* private fields */ }
Expand description
Contains any binary operation for a specific type. That takes two values of that type and returns value of that type.
Implementations§
Auto Trait Implementations§
impl<'closure, T, const INLINE_SIZE: usize> Freeze for BinOp<'closure, T, INLINE_SIZE>
impl<'closure, T, const INLINE_SIZE: usize = { $crate::DEFAULT_INLINE_SIZE }> !RefUnwindSafe for BinOp<'closure, T, INLINE_SIZE>
impl<'closure, T, const INLINE_SIZE: usize = { $crate::DEFAULT_INLINE_SIZE }> !Send for BinOp<'closure, T, INLINE_SIZE>
impl<'closure, T, const INLINE_SIZE: usize = { $crate::DEFAULT_INLINE_SIZE }> !Sync for BinOp<'closure, T, INLINE_SIZE>
impl<'closure, T, const INLINE_SIZE: usize> Unpin for BinOp<'closure, T, INLINE_SIZE>
impl<'closure, T, const INLINE_SIZE: usize = { $crate::DEFAULT_INLINE_SIZE }> !UnwindSafe for BinOp<'closure, T, INLINE_SIZE>
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