pub enum ScalarValue {
Variant0(String),
Variant1(f64),
Variant2(bool),
}
Expand description
A Coda result or entity expressed as a primitive type.
JSON schema
{
"description": "A Coda result or entity expressed as a primitive
type.",
"oneOf": [
{
"examples": [
"$12.34"
],
"type": "string"
},
{
"examples": [
12.34
],
"type": "number"
},
{
"examples": [
true
],
"type": "boolean"
}
],
"x-schema-name": "ScalarValue"
}
Variants§
Trait Implementations§
Source§impl Clone for ScalarValue
impl Clone for ScalarValue
Source§fn clone(&self) -> ScalarValue
fn clone(&self) -> ScalarValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ScalarValue
impl Debug for ScalarValue
Source§impl<'de> Deserialize<'de> for ScalarValue
impl<'de> Deserialize<'de> for ScalarValue
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 Display for ScalarValue
impl Display for ScalarValue
Source§impl From<&ScalarValue> for ScalarValue
impl From<&ScalarValue> for ScalarValue
Source§fn from(value: &ScalarValue) -> Self
fn from(value: &ScalarValue) -> Self
Converts to this type from the input type.
Source§impl From<ScalarValue> for RichSingleValue
impl From<ScalarValue> for RichSingleValue
Source§fn from(value: ScalarValue) -> Self
fn from(value: ScalarValue) -> Self
Converts to this type from the input type.
Source§impl From<ScalarValue> for ValueVariant1Item
impl From<ScalarValue> for ValueVariant1Item
Source§fn from(value: ScalarValue) -> Self
fn from(value: ScalarValue) -> Self
Converts to this type from the input type.
Source§impl From<bool> for ScalarValue
impl From<bool> for ScalarValue
Source§impl From<f64> for ScalarValue
impl From<f64> for ScalarValue
Source§impl FromStr for ScalarValue
impl FromStr for ScalarValue
Source§impl Serialize for ScalarValue
impl Serialize for ScalarValue
Source§impl TryFrom<&String> for ScalarValue
impl TryFrom<&String> for ScalarValue
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ScalarValue
impl TryFrom<&str> for ScalarValue
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ScalarValue
impl TryFrom<String> for ScalarValue
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ScalarValue
impl RefUnwindSafe for ScalarValue
impl Send for ScalarValue
impl Sync for ScalarValue
impl Unpin for ScalarValue
impl UnwindSafe for ScalarValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.