pub struct IfThenExpression {
pub expression: Value,
}
Expand description
IfThenExpression
JSON schema
{
"type": "object",
"required": [
"expression"
],
"properties": {
"expression": {
"const": "IF_THEN"
}
},
"additionalProperties": false
}
Fields§
§expression: Value
Implementations§
Source§impl IfThenExpression
impl IfThenExpression
pub fn builder() -> IfThenExpression
Trait Implementations§
Source§impl Clone for IfThenExpression
impl Clone for IfThenExpression
Source§fn clone(&self) -> IfThenExpression
fn clone(&self) -> IfThenExpression
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 IfThenExpression
impl Debug for IfThenExpression
Source§impl<'de> Deserialize<'de> for IfThenExpression
impl<'de> Deserialize<'de> for IfThenExpression
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<&IfThenExpression> for IfThenExpression
impl From<&IfThenExpression> for IfThenExpression
Source§fn from(value: &IfThenExpression) -> Self
fn from(value: &IfThenExpression) -> Self
Converts to this type from the input type.
Source§impl From<IfThenExpression> for DialectSupportedExpressionsItem
impl From<IfThenExpression> for DialectSupportedExpressionsItem
Source§fn from(value: IfThenExpression) -> Self
fn from(value: IfThenExpression) -> Self
Converts to this type from the input type.
Source§impl From<IfThenExpression> for IfThenExpression
impl From<IfThenExpression> for IfThenExpression
Source§fn from(value: IfThenExpression) -> Self
fn from(value: IfThenExpression) -> Self
Converts to this type from the input type.
Source§impl Serialize for IfThenExpression
impl Serialize for IfThenExpression
Source§impl TryFrom<IfThenExpression> for IfThenExpression
impl TryFrom<IfThenExpression> for IfThenExpression
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: IfThenExpression) -> Result<Self, ConversionError>
fn try_from(value: IfThenExpression) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for IfThenExpression
impl RefUnwindSafe for IfThenExpression
impl Send for IfThenExpression
impl Sync for IfThenExpression
impl Unpin for IfThenExpression
impl UnwindSafe for IfThenExpression
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