pub enum Value<'m> {
Int(i64),
Float(f64),
Data(&'m [u8]),
Utf8(&'m str),
VideoNode(VideoNode),
AudioNode(AudioNode),
VideoFrame(VideoFrame),
AudioFrame(AudioFrame),
Function(Function),
}
Variants§
Int(i64)
Float(f64)
Data(&'m [u8])
Utf8(&'m str)
VideoNode(VideoNode)
AudioNode(AudioNode)
VideoFrame(VideoFrame)
AudioFrame(AudioFrame)
Function(Function)
Trait Implementations§
Auto Trait Implementations§
impl<'m> Freeze for Value<'m>
impl<'m> RefUnwindSafe for Value<'m>
impl<'m> !Send for Value<'m>
impl<'m> !Sync for Value<'m>
impl<'m> Unpin for Value<'m>
impl<'m> UnwindSafe for Value<'m>
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