#[non_exhaustive]pub struct FixReport {
pub tracks: Vec<TrackFix>,
pub skipped: Vec<String>,
}Expand description
Summary of one byte-surgical repair pass.
Reports both successful track repairs and tracks that looked relevant but could not be safely patched without changing the container contract.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.tracks: Vec<TrackFix>Rotation tracks that were patched.
skipped: Vec<String>Tracks that needed repair but were skipped (data URI, cubic, quantized, sparse, or malformed accessors), with reasons.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixReport
impl RefUnwindSafe for FixReport
impl Send for FixReport
impl Sync for FixReport
impl Unpin for FixReport
impl UnsafeUnpin for FixReport
impl UnwindSafe for FixReport
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