Enum checked_rs::clamp::Panicking
source · pub enum Panicking {}
Trait Implementations§
source§impl Behavior for Panicking
impl Behavior for Panicking
fn add<T: Add<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn sub<T: Sub<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn mul<T: Mul<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn div<T: Div<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn rem<T: Rem<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn bitand<T: BitAnd<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn bitor<T: BitOr<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn bitxor<T: BitXor<Output = T>>( lhs: T, rhs: T, min: T::Output, max: T::Output, ) -> T::Output
fn neg<T: Neg<Output = T>>( value: T, min: T::Output, max: T::Output, ) -> T::Output
fn not<T: Not<Output = T>>( value: T, min: T::Output, max: T::Output, ) -> T::Output
source§impl Ord for Panicking
impl Ord for Panicking
source§impl PartialEq for Panicking
impl PartialEq for Panicking
source§impl PartialOrd for Panicking
impl PartialOrd for Panicking
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Panicking
impl Eq for Panicking
impl StructuralPartialEq for Panicking
Auto Trait Implementations§
impl Freeze for Panicking
impl RefUnwindSafe for Panicking
impl Send for Panicking
impl Sync for Panicking
impl Unpin for Panicking
impl UnwindSafe for Panicking
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