pub enum HerestringValue {
Primary(PrimaryExpression),
Concatenation(Concatenation),
}Variants§
Primary(PrimaryExpression)
Concatenation(Concatenation)
Trait Implementations§
Source§impl Clone for HerestringValue
impl Clone for HerestringValue
Source§fn clone(&self) -> HerestringValue
fn clone(&self) -> HerestringValue
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 HerestringValue
impl Debug for HerestringValue
Source§impl<'de> Deserialize<'de> for HerestringValue
impl<'de> Deserialize<'de> for HerestringValue
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 PartialEq for HerestringValue
impl PartialEq for HerestringValue
Source§impl Serialize for HerestringValue
impl Serialize for HerestringValue
impl StructuralPartialEq for HerestringValue
Auto Trait Implementations§
impl Freeze for HerestringValue
impl RefUnwindSafe for HerestringValue
impl Send for HerestringValue
impl Sync for HerestringValue
impl Unpin for HerestringValue
impl UnsafeUnpin for HerestringValue
impl UnwindSafe for HerestringValue
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