pub struct SelectionExpression {
pub expression: Value,
pub metadata: Map<String, Value>,
}Expand description
SelectionExpression
JSON schema
{
"type": "object",
"required": [
"expression"
],
"properties": {
"expression": {
"const": "SELECTION"
},
"metadata": {
"description": "Arbitrary data created by the dialect author.",
"type": "object"
}
},
"additionalProperties": false
}Fields§
§expression: Value§metadata: Map<String, Value>Arbitrary data created by the dialect author.
Implementations§
Source§impl SelectionExpression
impl SelectionExpression
pub fn builder() -> SelectionExpression
Trait Implementations§
Source§impl Clone for SelectionExpression
impl Clone for SelectionExpression
Source§fn clone(&self) -> SelectionExpression
fn clone(&self) -> SelectionExpression
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 moreSource§impl Debug for SelectionExpression
impl Debug for SelectionExpression
Source§impl<'de> Deserialize<'de> for SelectionExpression
impl<'de> Deserialize<'de> for SelectionExpression
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SelectionExpression, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SelectionExpression, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<SelectionExpression> for DialectSupportedExpressionsItem
impl From<SelectionExpression> for DialectSupportedExpressionsItem
Source§fn from(value: SelectionExpression) -> DialectSupportedExpressionsItem
fn from(value: SelectionExpression) -> DialectSupportedExpressionsItem
Converts to this type from the input type.
Source§impl From<SelectionExpression> for SelectionExpression
impl From<SelectionExpression> for SelectionExpression
Source§fn from(value: SelectionExpression) -> SelectionExpression
fn from(value: SelectionExpression) -> SelectionExpression
Converts to this type from the input type.
Source§impl PartialEq for SelectionExpression
impl PartialEq for SelectionExpression
Source§impl Serialize for SelectionExpression
impl Serialize for SelectionExpression
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SelectionExpression
Source§impl TryFrom<SelectionExpression> for SelectionExpression
impl TryFrom<SelectionExpression> for SelectionExpression
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: SelectionExpression,
) -> Result<SelectionExpression, ConversionError>
fn try_from( value: SelectionExpression, ) -> Result<SelectionExpression, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for SelectionExpression
impl RefUnwindSafe for SelectionExpression
impl Send for SelectionExpression
impl Sync for SelectionExpression
impl Unpin for SelectionExpression
impl UnsafeUnpin for SelectionExpression
impl UnwindSafe for SelectionExpression
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