pub struct PSNRPacket {
pub samples: PSNRSamples,
pub sse: PSNRSumSquaredError,
pub psnr: PSNR,
}Expand description
PSNR statistics for a frame.
Fields§
§samples: PSNRSamplesNumber of samples.
sse: PSNRSumSquaredErrorSum squared error.
psnr: PSNRPSNR.
Trait Implementations§
Source§impl Clone for PSNRPacket
impl Clone for PSNRPacket
Source§fn clone(&self) -> PSNRPacket
fn clone(&self) -> PSNRPacket
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 PSNRPacket
impl Debug for PSNRPacket
Source§impl PartialEq for PSNRPacket
impl PartialEq for PSNRPacket
Source§impl PartialOrd for PSNRPacket
impl PartialOrd for PSNRPacket
impl Copy for PSNRPacket
impl StructuralPartialEq for PSNRPacket
Auto Trait Implementations§
impl Freeze for PSNRPacket
impl RefUnwindSafe for PSNRPacket
impl Send for PSNRPacket
impl Sync for PSNRPacket
impl Unpin for PSNRPacket
impl UnwindSafe for PSNRPacket
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