pub enum ApproxFrac<I> {
Lower((I, I)),
Upper((I, I)),
}Variants§
Implementations§
Source§impl<I> ApproxFrac<I>
impl<I> ApproxFrac<I>
pub fn into_inner(self) -> (I, I)
Trait Implementations§
Source§impl<I> Debug for ApproxFrac<I>where
I: Display,
impl<I> Debug for ApproxFrac<I>where
I: Display,
Auto Trait Implementations§
impl<I> Freeze for ApproxFrac<I>where
I: Freeze,
impl<I> RefUnwindSafe for ApproxFrac<I>where
I: RefUnwindSafe,
impl<I> Send for ApproxFrac<I>where
I: Send,
impl<I> Sync for ApproxFrac<I>where
I: Sync,
impl<I> Unpin for ApproxFrac<I>where
I: Unpin,
impl<I> UnwindSafe for ApproxFrac<I>where
I: 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