pub enum VideoEvent {
Ready {
duration: u64,
},
Ended,
Error(String),
}Variants§
Trait Implementations§
Source§impl Clone for VideoEvent
impl Clone for VideoEvent
Source§fn clone(&self) -> VideoEvent
fn clone(&self) -> VideoEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 VideoEvent
impl Debug for VideoEvent
Source§impl PartialEq for VideoEvent
impl PartialEq for VideoEvent
impl StructuralPartialEq for VideoEvent
Auto Trait Implementations§
impl Freeze for VideoEvent
impl RefUnwindSafe for VideoEvent
impl Send for VideoEvent
impl Sync for VideoEvent
impl Unpin for VideoEvent
impl UnsafeUnpin for VideoEvent
impl UnwindSafe for VideoEvent
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