pub struct Conical {
pub units: Units,
pub length: f64,
pub angle: f64,
pub diameter: f64,
pub direction: Direction,
pub spindle_speed: f64,
pub feed_rate: f64,
}
Expand description
Conical tool configuration.
Fields§
§units: Units
The units used for the tool measurements (mm for metric, and inches for imperial).
length: f64
The length of the tool cutter.
angle: f64
The angle of the tool cutter.
diameter: f64
The diameter of the tool cutter.
direction: Direction
The spin direction for the tool.
spindle_speed: f64
The selected spindle/tool rotation speed (rpm) for this tool.
feed_rate: f64
The selected feed rate (mm/min for metric and inches/min for imperial) for this tool.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Conical
impl<'de> Deserialize<'de> for Conical
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<Conical> for Conical
impl PartialEq<Conical> for Conical
impl Copy for Conical
impl Eq for Conical
Auto Trait Implementations§
impl RefUnwindSafe for Conical
impl Send for Conical
impl Sync for Conical
impl Unpin for Conical
impl UnwindSafe for Conical
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