#[non_exhaustive]pub struct ImirBox {
pub axis: u8,
}Expand description
Image Mirror box (imir). NOT a FullBox.
Specifies a mirror axis to apply after rotation.
axis = 0 means vertical axis (left-right flip),
axis = 1 means horizontal axis (top-bottom flip).
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.axis: u80 = vertical axis (left-right flip), 1 = horizontal axis (top-bottom flip)
Implementations§
Trait Implementations§
impl Copy for ImirBox
impl StructuralPartialEq for ImirBox
Auto Trait Implementations§
impl Freeze for ImirBox
impl RefUnwindSafe for ImirBox
impl Send for ImirBox
impl Sync for ImirBox
impl Unpin for ImirBox
impl UnsafeUnpin for ImirBox
impl UnwindSafe for ImirBox
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