pub enum NumericPath {
F32,
I32Q16,
}Expand description
Which numeric wire path this weave was authored for.
Must match the crate feature selected at compile time (signal-f32 or
signal-i32); validate rejects a mismatch.
Variants§
F32
f32 wire representation (signal-f32 builds).
I32Q16
Fixed-point i32 Q16 wire representation (signal-i32 builds).
Implementations§
Source§impl NumericPath
impl NumericPath
Trait Implementations§
Source§impl Clone for NumericPath
impl Clone for NumericPath
Source§fn clone(&self) -> NumericPath
fn clone(&self) -> NumericPath
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 NumericPath
Source§impl Debug for NumericPath
impl Debug for NumericPath
Source§impl<'de> Deserialize<'de> for NumericPath
impl<'de> Deserialize<'de> for NumericPath
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
impl Eq for NumericPath
Source§impl JsonSchema for NumericPath
impl JsonSchema for NumericPath
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for NumericPath
impl PartialEq for NumericPath
Source§impl Serialize for NumericPath
impl Serialize for NumericPath
impl StructuralPartialEq for NumericPath
Auto Trait Implementations§
impl Freeze for NumericPath
impl RefUnwindSafe for NumericPath
impl Send for NumericPath
impl Sync for NumericPath
impl Unpin for NumericPath
impl UnsafeUnpin for NumericPath
impl UnwindSafe for NumericPath
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