pub(super) struct VideoPlayState {
pub src_url: String,
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
pub playing: bool,
pub stop_request: bool,
}Fields§
§src_url: String§x: u32§y: u32§width: u32§height: u32§playing: bool§stop_request: boolTrait Implementations§
Source§impl Clone for VideoPlayState
impl Clone for VideoPlayState
Source§fn clone(&self) -> VideoPlayState
fn clone(&self) -> VideoPlayState
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 moreAuto Trait Implementations§
impl Freeze for VideoPlayState
impl RefUnwindSafe for VideoPlayState
impl Send for VideoPlayState
impl Sync for VideoPlayState
impl Unpin for VideoPlayState
impl UnsafeUnpin for VideoPlayState
impl UnwindSafe for VideoPlayState
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