pub struct RefFrameScore {
pub frame_idx: usize,
pub quality_score: f64,
pub temporal_distance: i32,
pub total_score: f64,
}Expand description
Reference frame score.
Fields§
§frame_idx: usizeFrame index.
quality_score: f64Prediction quality score.
temporal_distance: i32Temporal distance.
total_score: f64Total score (higher is better).
Implementations§
Trait Implementations§
Source§impl Clone for RefFrameScore
impl Clone for RefFrameScore
Source§fn clone(&self) -> RefFrameScore
fn clone(&self) -> RefFrameScore
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 RefFrameScore
impl Debug for RefFrameScore
impl Copy for RefFrameScore
Auto Trait Implementations§
impl Freeze for RefFrameScore
impl RefUnwindSafe for RefFrameScore
impl Send for RefFrameScore
impl Sync for RefFrameScore
impl Unpin for RefFrameScore
impl UnsafeUnpin for RefFrameScore
impl UnwindSafe for RefFrameScore
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more