Enum gsk4::PathOperation 
source · #[non_exhaustive]pub enum PathOperation {
    Move,
    Close,
    Line,
    Quad,
    Cubic,
    Conic,
}v4_14 only.Expand description
Path operations are used to describe the segments of a Path.
More values may be added in the future.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Move
A move-to operation, with 1 point describing the target point.
Close
A close operation ending the current contour with a line back to the starting point. Two points describe the start and end of the line.
Line
A line-to operation, with 2 points describing the start and end point of a straight line.
Quad
A curve-to operation describing a quadratic Bézier curve with 3 points describing the start point, the control point and the end point of the curve.
Cubic
A curve-to operation describing a cubic Bézier curve with 4 points describing the start point, the two control points and the end point of the curve.
Conic
A rational quadratic Bézier curve with 3 points describing the start point, control point and end point of the curve. A weight for the curve will be passed, too.
Trait Implementations§
source§impl Clone for PathOperation
 
impl Clone for PathOperation
source§fn clone(&self) -> PathOperation
 
fn clone(&self) -> PathOperation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PathOperation
 
impl Debug for PathOperation
source§impl Display for PathOperation
 
impl Display for PathOperation
source§impl From<PathOperation> for Value
 
impl From<PathOperation> for Value
source§fn from(v: PathOperation) -> Self
 
fn from(v: PathOperation) -> Self
source§impl<'a> FromValue<'a> for PathOperation
 
impl<'a> FromValue<'a> for PathOperation
§type Checker = GenericValueTypeChecker<PathOperation>
 
type Checker = GenericValueTypeChecker<PathOperation>
source§unsafe fn from_value(value: &'a Value) -> Self
 
unsafe fn from_value(value: &'a Value) -> Self
Value. Read moresource§impl HasParamSpec for PathOperation
 
impl HasParamSpec for PathOperation
type ParamSpec = ParamSpecEnum
§type SetValue = PathOperation
 
type SetValue = PathOperation
type BuilderFn = fn(_: &str, _: PathOperation) -> ParamSpecEnumBuilder<'_, PathOperation>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for PathOperation
 
impl Hash for PathOperation
source§impl Ord for PathOperation
 
impl Ord for PathOperation
source§fn cmp(&self, other: &PathOperation) -> Ordering
 
fn cmp(&self, other: &PathOperation) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl PartialEq<PathOperation> for PathOperation
 
impl PartialEq<PathOperation> for PathOperation
source§fn eq(&self, other: &PathOperation) -> bool
 
fn eq(&self, other: &PathOperation) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd<PathOperation> for PathOperation
 
impl PartialOrd<PathOperation> for PathOperation
source§fn partial_cmp(&self, other: &PathOperation) -> Option<Ordering>
 
fn partial_cmp(&self, other: &PathOperation) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresource§impl StaticType for PathOperation
 
impl StaticType for PathOperation
source§fn static_type() -> Type
 
fn static_type() -> Type
Self.source§impl ToValue for PathOperation
 
impl ToValue for PathOperation
source§impl ValueType for PathOperation
 
impl ValueType for PathOperation
§type Type = PathOperation
 
type Type = PathOperation
Type from. Read moreimpl Copy for PathOperation
impl Eq for PathOperation
impl StructuralEq for PathOperation
impl StructuralPartialEq for PathOperation
Auto Trait Implementations§
impl RefUnwindSafe for PathOperation
impl Send for PathOperation
impl Sync for PathOperation
impl Unpin for PathOperation
impl UnwindSafe for PathOperation
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
source§impl<T> IntoClosureReturnValue for Twhere
    T: Into<Value>,
 
impl<T> IntoClosureReturnValue for Twhere T: Into<Value>,
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> PropertyGet for Twhere
    T: HasParamSpec,
 
impl<T> PropertyGet for Twhere T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
    T: StaticType,
 
impl<T> StaticTypeExt for Twhere T: StaticType,
source§fn ensure_type()
 
fn ensure_type()
source§impl<T> ToSendValue for Twhere
    T: Send + ToValue + ?Sized,
 
impl<T> ToSendValue for Twhere T: Send + ToValue + ?Sized,
source§fn to_send_value(&self) -> SendValue
 
fn to_send_value(&self) -> SendValue
SendValue clone of self.