pub struct Quotient {
pub q: u64,
pub from: u64,
pub to: u64,
}
Expand description
Fields§
§q: u64
floor(N/x)
の値
from: u64
x
の最小値
to: u64
x
の最大値
Trait Implementations§
impl Copy for Quotient
impl Eq for Quotient
impl StructuralPartialEq for Quotient
Auto Trait Implementations§
impl Freeze for Quotient
impl RefUnwindSafe for Quotient
impl Send for Quotient
impl Sync for Quotient
impl Unpin for Quotient
impl UnwindSafe for Quotient
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