pub enum IntCoef {
I64(i64),
Big(BigInt),
}Expand description
Used to efficiently represent coefficients generated by the polynomial parser.
Needs to be converted into a type that implements Coef to actually perform polynomial
substitution.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for IntCoef
impl RefUnwindSafe for IntCoef
impl Send for IntCoef
impl Sync for IntCoef
impl Unpin for IntCoef
impl UnsafeUnpin for IntCoef
impl UnwindSafe for IntCoef
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