pub enum ParameterValueType<'a> {
Single(&'a ParameterValue),
List(&'a ParameterValues),
OptionalList(&'a OptionalParameterValues),
}
Variants§
Trait Implementations§
Source§impl<'a> From<&'a ParameterValue> for ParameterValueType<'a>
impl<'a> From<&'a ParameterValue> for ParameterValueType<'a>
Source§fn from(v: &'a ParameterValue) -> Self
fn from(v: &'a ParameterValue) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<Option<ParameterValue>>> for ParameterValueType<'a>
impl<'a> From<&'a Vec<Option<ParameterValue>>> for ParameterValueType<'a>
Source§fn from(v: &'a OptionalParameterValues) -> Self
fn from(v: &'a OptionalParameterValues) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<ParameterValue>> for ParameterValueType<'a>
impl<'a> From<&'a Vec<ParameterValue>> for ParameterValueType<'a>
Source§fn from(v: &'a ParameterValues) -> Self
fn from(v: &'a ParameterValues) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for ParameterValueType<'a>
impl<'a> RefUnwindSafe for ParameterValueType<'a>
impl<'a> Send for ParameterValueType<'a>
impl<'a> Sync for ParameterValueType<'a>
impl<'a> Unpin for ParameterValueType<'a>
impl<'a> UnwindSafe for ParameterValueType<'a>
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