pub enum AnyOrExpression {
Any(Value),
Expression(String),
}
Variants§
Trait Implementations§
Source§impl Clone for AnyOrExpression
impl Clone for AnyOrExpression
Source§fn clone(&self) -> AnyOrExpression
fn clone(&self) -> AnyOrExpression
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 AnyOrExpression
impl Debug for AnyOrExpression
Auto Trait Implementations§
impl Freeze for AnyOrExpression
impl RefUnwindSafe for AnyOrExpression
impl Send for AnyOrExpression
impl Sync for AnyOrExpression
impl Unpin for AnyOrExpression
impl UnwindSafe for AnyOrExpression
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