pub struct SubpixelMv {
pub dx: i32,
pub dy: i32,
}Expand description
A 2-D sub-pixel motion vector (1/4-pixel precision, values are in units of 1/4 pixel).
Fields§
§dx: i32Horizontal displacement in quarter-pixels.
dy: i32Vertical displacement in quarter-pixels.
Trait Implementations§
Source§impl Clone for SubpixelMv
impl Clone for SubpixelMv
Source§fn clone(&self) -> SubpixelMv
fn clone(&self) -> SubpixelMv
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 SubpixelMv
impl Debug for SubpixelMv
Source§impl Default for SubpixelMv
impl Default for SubpixelMv
Source§fn default() -> SubpixelMv
fn default() -> SubpixelMv
Returns the “default value” for a type. Read more
Source§impl PartialEq for SubpixelMv
impl PartialEq for SubpixelMv
impl Copy for SubpixelMv
impl Eq for SubpixelMv
impl StructuralPartialEq for SubpixelMv
Auto Trait Implementations§
impl Freeze for SubpixelMv
impl RefUnwindSafe for SubpixelMv
impl Send for SubpixelMv
impl Sync for SubpixelMv
impl Unpin for SubpixelMv
impl UnsafeUnpin for SubpixelMv
impl UnwindSafe for SubpixelMv
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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