pub enum Value<'a> {
I64(i64),
U64(u64),
Str(&'a str),
Bool(bool),
Pair(i64, i64),
Formaton(Arc<Formaton>),
Soniton(Arc<Soniton>),
}
Expand description
Accepted option values.
Variants§
I64(i64)
Signed integer value.
U64(u64)
Unsigned integer value.
Str(&'a str)
Unicode string slice value.
Bool(bool)
Boolean value.
Pair(i64, i64)
Pair of signed integer values.
Formaton(Arc<Formaton>)
Image colorspace representation value.
Soniton(Arc<Soniton>)
Audio format definition value.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Value<'a>
impl<'a> RefUnwindSafe for Value<'a>
impl<'a> Send for Value<'a>
impl<'a> Sync for Value<'a>
impl<'a> Unpin for Value<'a>
impl<'a> UnwindSafe for Value<'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