pub struct VideoPlayerInfo {
pub width: i32,
pub height: i32,
pub frame_rate: f32,
pub frame_count: i32,
pub current_frame: i32,
}Fields§
§width: i32§height: i32§frame_rate: f32§frame_count: i32§current_frame: i32Trait Implementations§
Source§impl Clone for VideoPlayerInfo
impl Clone for VideoPlayerInfo
Source§fn clone(&self) -> VideoPlayerInfo
fn clone(&self) -> VideoPlayerInfo
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 VideoPlayerInfo
impl Debug for VideoPlayerInfo
Source§impl Default for VideoPlayerInfo
impl Default for VideoPlayerInfo
Source§fn default() -> VideoPlayerInfo
fn default() -> VideoPlayerInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for VideoPlayerInfo
impl PartialEq for VideoPlayerInfo
impl StructuralPartialEq for VideoPlayerInfo
Auto Trait Implementations§
impl Freeze for VideoPlayerInfo
impl RefUnwindSafe for VideoPlayerInfo
impl Send for VideoPlayerInfo
impl Sync for VideoPlayerInfo
impl Unpin for VideoPlayerInfo
impl UnwindSafe for VideoPlayerInfo
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