pub enum CurveProjectionDirection {
Vector(Vector3),
State(CurveProjectionDirectionState),
}Expand description
Direction law for projected curves.
Variants§
Vector(Vector3)
One explicit model-space vector.
State(CurveProjectionDirectionState)
Direction state without one explicit vector.
Trait Implementations§
Source§impl Clone for CurveProjectionDirection
impl Clone for CurveProjectionDirection
Source§fn clone(&self) -> CurveProjectionDirection
fn clone(&self) -> CurveProjectionDirection
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 CurveProjectionDirection
Source§impl Debug for CurveProjectionDirection
impl Debug for CurveProjectionDirection
Source§impl Default for CurveProjectionDirection
impl Default for CurveProjectionDirection
Source§impl<'de> Deserialize<'de> for CurveProjectionDirection
impl<'de> Deserialize<'de> for CurveProjectionDirection
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 JsonSchema for CurveProjectionDirection
impl JsonSchema for CurveProjectionDirection
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CurveProjectionDirection
impl PartialEq for CurveProjectionDirection
Source§impl Serialize for CurveProjectionDirection
impl Serialize for CurveProjectionDirection
impl StructuralPartialEq for CurveProjectionDirection
Auto Trait Implementations§
impl Freeze for CurveProjectionDirection
impl RefUnwindSafe for CurveProjectionDirection
impl Send for CurveProjectionDirection
impl Sync for CurveProjectionDirection
impl Unpin for CurveProjectionDirection
impl UnsafeUnpin for CurveProjectionDirection
impl UnwindSafe for CurveProjectionDirection
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