pub enum BltRegion {
    Full,
    SubRectangle {
        coords: (usize, usize),
        px_stride: usize,
    },
}
Expand description

Region of the BltBuffer which we are operating on

Some Blt operations can operate on either the full BltBuffer or a sub-rectangle of it, but require the stride to be known in the latter case.

Variants

Full

Operate on the full BltBuffer

SubRectangle

Fields

coords: (usize, usize)

Coordinate of the rectangle in the BltBuffer

px_stride: usize

Stride (length of each row of the BltBuffer) in pixels

Operate on a sub-rectangle of the BltBuffer

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.