pub enum GuideOperand {
Literal(f64),
Guide(String),
}Variants§
Implementations§
Source§impl GuideOperand
impl GuideOperand
pub fn parse(value: &str) -> Result<Self, GeometryError>
Trait Implementations§
Source§impl Clone for GuideOperand
impl Clone for GuideOperand
Source§fn clone(&self) -> GuideOperand
fn clone(&self) -> GuideOperand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GuideOperand
impl Debug for GuideOperand
Source§impl From<&str> for GuideOperand
impl From<&str> for GuideOperand
Source§impl From<f64> for GuideOperand
impl From<f64> for GuideOperand
Source§impl PartialEq for GuideOperand
impl PartialEq for GuideOperand
impl StructuralPartialEq for GuideOperand
Auto Trait Implementations§
impl Freeze for GuideOperand
impl RefUnwindSafe for GuideOperand
impl Send for GuideOperand
impl Sync for GuideOperand
impl Unpin for GuideOperand
impl UnsafeUnpin for GuideOperand
impl UnwindSafe for GuideOperand
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