pub enum InterpolationResolution {
Resolution(Box<Resolution>),
Fraction(Box<Fraction>),
}Variants§
Trait Implementations§
Source§impl Clone for InterpolationResolution
impl Clone for InterpolationResolution
Source§fn clone(&self) -> InterpolationResolution
fn clone(&self) -> InterpolationResolution
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 InterpolationResolution
impl Debug for InterpolationResolution
Source§impl Default for InterpolationResolution
impl Default for InterpolationResolution
Source§impl<'de> Deserialize<'de> for InterpolationResolution
impl<'de> Deserialize<'de> for InterpolationResolution
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 PartialEq for InterpolationResolution
impl PartialEq for InterpolationResolution
Source§impl Serialize for InterpolationResolution
impl Serialize for InterpolationResolution
impl StructuralPartialEq for InterpolationResolution
Auto Trait Implementations§
impl Freeze for InterpolationResolution
impl RefUnwindSafe for InterpolationResolution
impl Send for InterpolationResolution
impl Sync for InterpolationResolution
impl Unpin for InterpolationResolution
impl UnsafeUnpin for InterpolationResolution
impl UnwindSafe for InterpolationResolution
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