#[repr(u32)]pub enum Cvc5RoundingMode {
CVC5_RM_ROUND_NEAREST_TIES_TO_EVEN = 0,
CVC5_RM_ROUND_TOWARD_POSITIVE = 1,
CVC5_RM_ROUND_TOWARD_NEGATIVE = 2,
CVC5_RM_ROUND_TOWARD_ZERO = 3,
CVC5_RM_ROUND_NEAREST_TIES_TO_AWAY = 4,
CVC5_RM_LAST = 5,
}Variants§
CVC5_RM_ROUND_NEAREST_TIES_TO_EVEN = 0
CVC5_RM_ROUND_TOWARD_POSITIVE = 1
CVC5_RM_ROUND_TOWARD_NEGATIVE = 2
CVC5_RM_ROUND_TOWARD_ZERO = 3
CVC5_RM_ROUND_NEAREST_TIES_TO_AWAY = 4
CVC5_RM_LAST = 5
Trait Implementations§
Source§impl Clone for Cvc5RoundingMode
impl Clone for Cvc5RoundingMode
Source§fn clone(&self) -> Cvc5RoundingMode
fn clone(&self) -> Cvc5RoundingMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Cvc5RoundingMode
impl Debug for Cvc5RoundingMode
Source§impl Hash for Cvc5RoundingMode
impl Hash for Cvc5RoundingMode
Source§impl PartialEq for Cvc5RoundingMode
impl PartialEq for Cvc5RoundingMode
impl Copy for Cvc5RoundingMode
impl Eq for Cvc5RoundingMode
impl StructuralPartialEq for Cvc5RoundingMode
Auto Trait Implementations§
impl Freeze for Cvc5RoundingMode
impl RefUnwindSafe for Cvc5RoundingMode
impl Send for Cvc5RoundingMode
impl Sync for Cvc5RoundingMode
impl Unpin for Cvc5RoundingMode
impl UnsafeUnpin for Cvc5RoundingMode
impl UnwindSafe for Cvc5RoundingMode
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