pub struct CurvesFilterPoint {
pub x: f64,
pub y: f64,
pub curved: Option<bool>,
}Expand description
curves filter point { x; y; curved?; }.
Fields§
§x: f64§y: f64§curved: Option<bool>Trait Implementations§
Source§impl Clone for CurvesFilterPoint
impl Clone for CurvesFilterPoint
Source§fn clone(&self) -> CurvesFilterPoint
fn clone(&self) -> CurvesFilterPoint
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 moreimpl Copy for CurvesFilterPoint
Source§impl Debug for CurvesFilterPoint
impl Debug for CurvesFilterPoint
Source§impl Default for CurvesFilterPoint
impl Default for CurvesFilterPoint
Source§fn default() -> CurvesFilterPoint
fn default() -> CurvesFilterPoint
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CurvesFilterPoint
impl RefUnwindSafe for CurvesFilterPoint
impl Send for CurvesFilterPoint
impl Sync for CurvesFilterPoint
impl Unpin for CurvesFilterPoint
impl UnsafeUnpin for CurvesFilterPoint
impl UnwindSafe for CurvesFilterPoint
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