Struct svg2gcode::SupportedFunctionality
source · pub struct SupportedFunctionality {
pub circular_interpolation: bool,
}Fields§
§circular_interpolation: boolIndicates support for G2/G3 circular interpolation.
Most modern machines support this. Old ones like early MakerBot 3D printers do not.
Trait Implementations§
source§impl Clone for SupportedFunctionality
impl Clone for SupportedFunctionality
source§fn clone(&self) -> SupportedFunctionality
fn clone(&self) -> SupportedFunctionality
Returns a copy 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 SupportedFunctionality
impl Debug for SupportedFunctionality
source§impl Default for SupportedFunctionality
impl Default for SupportedFunctionality
source§fn default() -> SupportedFunctionality
fn default() -> SupportedFunctionality
Returns the “default value” for a type. Read more
source§impl PartialEq<SupportedFunctionality> for SupportedFunctionality
impl PartialEq<SupportedFunctionality> for SupportedFunctionality
source§fn eq(&self, other: &SupportedFunctionality) -> bool
fn eq(&self, other: &SupportedFunctionality) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SupportedFunctionality
Auto Trait Implementations§
impl RefUnwindSafe for SupportedFunctionality
impl Send for SupportedFunctionality
impl Sync for SupportedFunctionality
impl Unpin for SupportedFunctionality
impl UnwindSafe for SupportedFunctionality
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