pub struct ExternalResult {
pub image_name: String,
pub codec: String,
pub codec_version: Option<String>,
pub quality_setting: Option<f64>,
pub file_size: Option<usize>,
pub bits_per_pixel: Option<f64>,
pub ssimulacra2: Option<f64>,
pub dssim: Option<f64>,
pub psnr: Option<f64>,
pub butteraugli: Option<f64>,
pub encode_time_ms: Option<f64>,
pub extra: HashMap<String, String>,
}Expand description
An imported result from an external encoder benchmark.
Fields§
§image_name: StringImage name or identifier.
codec: StringCodec identifier.
codec_version: Option<String>Codec version (if available).
quality_setting: Option<f64>Quality setting used.
file_size: Option<usize>Encoded file size in bytes.
bits_per_pixel: Option<f64>Bits per pixel.
ssimulacra2: Option<f64>SSIMULACRA2 score (if available).
dssim: Option<f64>DSSIM value (if available).
psnr: Option<f64>PSNR value (if available).
butteraugli: Option<f64>Butteraugli distance (if available).
encode_time_ms: Option<f64>Encoding time in milliseconds (if available).
extra: HashMap<String, String>Additional fields.
Trait Implementations§
Source§impl Clone for ExternalResult
impl Clone for ExternalResult
Source§fn clone(&self) -> ExternalResult
fn clone(&self) -> ExternalResult
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 ExternalResult
impl Debug for ExternalResult
Source§impl<'de> Deserialize<'de> for ExternalResult
impl<'de> Deserialize<'de> for ExternalResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExternalResult
impl RefUnwindSafe for ExternalResult
impl Send for ExternalResult
impl Sync for ExternalResult
impl Unpin for ExternalResult
impl UnwindSafe for ExternalResult
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