Enum hcl_primitives::expr::UnaryOperator
source · pub enum UnaryOperator {
Neg,
Not,
}Expand description
An operator that can be applied to an expression.
For more details, check the section about operations in the HCL syntax specification.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for UnaryOperator
impl Clone for UnaryOperator
source§fn clone(&self) -> UnaryOperator
fn clone(&self) -> UnaryOperator
Returns a copy 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 UnaryOperator
impl Debug for UnaryOperator
source§impl<'de> Deserialize<'de> for UnaryOperator
impl<'de> Deserialize<'de> for UnaryOperator
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 UnaryOperator
impl Display for UnaryOperator
source§impl FromStr for UnaryOperator
impl FromStr for UnaryOperator
source§impl<'de> IntoDeserializer<'de, Error> for UnaryOperator
impl<'de> IntoDeserializer<'de, Error> for UnaryOperator
§type Deserializer = StrDeserializer<'static, Error>
type Deserializer = StrDeserializer<'static, Error>
The type of the deserializer being converted into.
source§fn into_deserializer(self) -> Self::Deserializer
fn into_deserializer(self) -> Self::Deserializer
Convert this value into a deserializer.
source§impl PartialEq<UnaryOperator> for UnaryOperator
impl PartialEq<UnaryOperator> for UnaryOperator
source§fn eq(&self, other: &UnaryOperator) -> bool
fn eq(&self, other: &UnaryOperator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.