pub struct Checked<T>(pub CtOption<T>);
Expand description
Tuple Fields§
§0: CtOption<T>
Implementations§
Trait Implementations§
Source§impl<const LIMBS: usize> AddAssign<&Checked<Int<LIMBS>>> for Checked<Int<LIMBS>>
impl<const LIMBS: usize> AddAssign<&Checked<Int<LIMBS>>> for Checked<Int<LIMBS>>
Source§fn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Performs the
+=
operation. Read moreSource§impl AddAssign<&Checked<Limb>> for Checked<Limb>
impl AddAssign<&Checked<Limb>> for Checked<Limb>
Source§fn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Performs the
+=
operation. Read moreSource§impl<const LIMBS: usize> AddAssign<&Checked<Uint<LIMBS>>> for Checked<Uint<LIMBS>>
impl<const LIMBS: usize> AddAssign<&Checked<Uint<LIMBS>>> for Checked<Uint<LIMBS>>
Source§fn add_assign(&mut self, other: &Self)
fn add_assign(&mut self, other: &Self)
Performs the
+=
operation. Read moreSource§impl<const LIMBS: usize> AddAssign for Checked<Int<LIMBS>>
impl<const LIMBS: usize> AddAssign for Checked<Int<LIMBS>>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl AddAssign for Checked<Limb>
impl AddAssign for Checked<Limb>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl<const LIMBS: usize> AddAssign for Checked<Uint<LIMBS>>
impl<const LIMBS: usize> AddAssign for Checked<Uint<LIMBS>>
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+=
operation. Read moreSource§impl<T: ConditionallySelectable> ConditionallySelectable for Checked<T>
impl<T: ConditionallySelectable> ConditionallySelectable for Checked<T>
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
Conditionally swap
self
and other
if choice == 1
; otherwise,
reassign both unto themselves. Read moreSource§impl<T: ConstantTimeEq> ConstantTimeEq for Checked<T>
impl<T: ConstantTimeEq> ConstantTimeEq for Checked<T>
Source§impl<'de, T: Default + Deserialize<'de>> Deserialize<'de> for Checked<T>
Available on crate feature serde
only.
impl<'de, T: Default + Deserialize<'de>> Deserialize<'de> for Checked<T>
Available on crate feature
serde
only.Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl MulAssign<&Checked<Limb>> for Checked<Limb>
impl MulAssign<&Checked<Limb>> for Checked<Limb>
Source§fn mul_assign(&mut self, other: &Self)
fn mul_assign(&mut self, other: &Self)
Performs the
*=
operation. Read moreSource§impl MulAssign for Checked<Limb>
impl MulAssign for Checked<Limb>
Source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the
*=
operation. Read moreSource§impl<const LIMBS: usize> SubAssign<&Checked<Int<LIMBS>>> for Checked<Int<LIMBS>>
impl<const LIMBS: usize> SubAssign<&Checked<Int<LIMBS>>> for Checked<Int<LIMBS>>
Source§fn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Performs the
-=
operation. Read moreSource§impl SubAssign<&Checked<Limb>> for Checked<Limb>
impl SubAssign<&Checked<Limb>> for Checked<Limb>
Source§fn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Performs the
-=
operation. Read moreSource§impl<const LIMBS: usize> SubAssign<&Checked<Uint<LIMBS>>> for Checked<Uint<LIMBS>>
impl<const LIMBS: usize> SubAssign<&Checked<Uint<LIMBS>>> for Checked<Uint<LIMBS>>
Source§fn sub_assign(&mut self, other: &Self)
fn sub_assign(&mut self, other: &Self)
Performs the
-=
operation. Read moreSource§impl<const LIMBS: usize> SubAssign for Checked<Int<LIMBS>>
impl<const LIMBS: usize> SubAssign for Checked<Int<LIMBS>>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreSource§impl SubAssign for Checked<Limb>
impl SubAssign for Checked<Limb>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreSource§impl<const LIMBS: usize> SubAssign for Checked<Uint<LIMBS>>
impl<const LIMBS: usize> SubAssign for Checked<Uint<LIMBS>>
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-=
operation. Read moreimpl<T: Copy> Copy for Checked<T>
Auto Trait Implementations§
impl<T> Freeze for Checked<T>where
T: Freeze,
impl<T> RefUnwindSafe for Checked<T>where
T: RefUnwindSafe,
impl<T> Send for Checked<T>where
T: Send,
impl<T> Sync for Checked<T>where
T: Sync,
impl<T> Unpin for Checked<T>where
T: Unpin,
impl<T> UnwindSafe for Checked<T>where
T: 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