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