pub struct ExecutionContextVariable {
pub expression: Value,
pub variable_types: Vec<ExecutionContextVariableVariableTypesItem>,
}Expand description
ExecutionContextVariable
JSON schema
{
"type": "object",
"required": [
"expression"
],
"properties": {
"expression": {
"const": "EXECUTION_CONTEXT_VARIABLE"
},
"variable_types": {
"description": "The possible execution context variable types.",
"type": "array",
"items": {
"oneOf": [
{
"enum": [
"CURRENT_TIMESTAMP",
"CURRENT_TIMEZONE",
"CURRENT_DATE"
]
}
]
}
}
},
"additionalProperties": false
}Fields§
§expression: Value§variable_types: Vec<ExecutionContextVariableVariableTypesItem>The possible execution context variable types.
Implementations§
Source§impl ExecutionContextVariable
impl ExecutionContextVariable
pub fn builder() -> ExecutionContextVariable
Trait Implementations§
Source§impl Clone for ExecutionContextVariable
impl Clone for ExecutionContextVariable
Source§fn clone(&self) -> ExecutionContextVariable
fn clone(&self) -> ExecutionContextVariable
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 ExecutionContextVariable
impl Debug for ExecutionContextVariable
Source§impl<'de> Deserialize<'de> for ExecutionContextVariable
impl<'de> Deserialize<'de> for ExecutionContextVariable
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 From<ExecutionContextVariable> for DialectSupportedExpressionsItem
impl From<ExecutionContextVariable> for DialectSupportedExpressionsItem
Source§fn from(value: ExecutionContextVariable) -> Self
fn from(value: ExecutionContextVariable) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionContextVariable> for ExecutionContextVariable
impl From<ExecutionContextVariable> for ExecutionContextVariable
Source§fn from(value: ExecutionContextVariable) -> Self
fn from(value: ExecutionContextVariable) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExecutionContextVariable
impl PartialEq for ExecutionContextVariable
Source§impl Serialize for ExecutionContextVariable
impl Serialize for ExecutionContextVariable
impl StructuralPartialEq for ExecutionContextVariable
Source§impl TryFrom<ExecutionContextVariable> for ExecutionContextVariable
impl TryFrom<ExecutionContextVariable> for ExecutionContextVariable
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ExecutionContextVariable) -> Result<Self, ConversionError>
fn try_from(value: ExecutionContextVariable) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ExecutionContextVariable
impl RefUnwindSafe for ExecutionContextVariable
impl Send for ExecutionContextVariable
impl Sync for ExecutionContextVariable
impl Unpin for ExecutionContextVariable
impl UnsafeUnpin for ExecutionContextVariable
impl UnwindSafe for ExecutionContextVariable
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