pub enum ParameterBinding {
Literal {
value: ParameterValue,
},
Exposed {
parent_param: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ParameterBinding
impl Clone for ParameterBinding
Source§fn clone(&self) -> ParameterBinding
fn clone(&self) -> ParameterBinding
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 ParameterBinding
impl Debug for ParameterBinding
Source§impl PartialEq for ParameterBinding
impl PartialEq for ParameterBinding
Source§fn eq(&self, other: &ParameterBinding) -> bool
fn eq(&self, other: &ParameterBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParameterBinding
Auto Trait Implementations§
impl Freeze for ParameterBinding
impl RefUnwindSafe for ParameterBinding
impl Send for ParameterBinding
impl Sync for ParameterBinding
impl Unpin for ParameterBinding
impl UnsafeUnpin for ParameterBinding
impl UnwindSafe for ParameterBinding
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