[][src]Struct gstreamer_video::VideoRectangle

pub struct VideoRectangle {
    pub x: i32,
    pub y: i32,
    pub w: i32,
    pub h: i32,
}

Fields

x: i32y: i32w: i32h: i32

Methods

impl VideoRectangle[src]

pub fn new(x: i32, y: i32, w: i32, h: i32) -> Self[src]

Trait Implementations

impl Clone for VideoRectangle[src]

impl Debug for VideoRectangle[src]

impl Eq for VideoRectangle[src]

impl Hash for VideoRectangle[src]

impl PartialEq<VideoRectangle> for VideoRectangle[src]

impl StructuralEq for VideoRectangle[src]

impl StructuralPartialEq for VideoRectangle[src]

Auto Trait Implementations

impl RefUnwindSafe for VideoRectangle

impl Send for VideoRectangle

impl Sync for VideoRectangle

impl Unpin for VideoRectangle

impl UnwindSafe for VideoRectangle

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.