gfx_hal::display

Struct DisplayPlane

Source
pub struct DisplayPlane<'a, B: Backend> {
    pub display_mode: &'a DisplayMode<B>,
    pub plane: &'a Plane,
    pub supported_alpha: Vec<DisplayPlaneAlpha>,
    pub src_position: Range<Offset2D>,
    pub src_extent: Range<Extent2D>,
    pub dst_position: Range<Offset2D>,
    pub dst_extent: Range<Extent2D>,
}
Expand description

Represent a combination of display mode (so display and resolution) and a plane

Fields§

§display_mode: &'a DisplayMode<B>

Display mode

§plane: &'a Plane

Plane index

§supported_alpha: Vec<DisplayPlaneAlpha>

Supported alpha capabilities

§src_position: Range<Offset2D>

The minimum and the maximum source rectangle offset supported by this plane using the specified mode.

§src_extent: Range<Extent2D>

The minimum and maximum source rectangle size supported by this plane using the specified mode.

§dst_position: Range<Offset2D>

Same as src_position. but applied to destination.

§dst_extent: Range<Extent2D>

Same as src_extent. but applied to destination.

Trait Implementations§

Source§

impl<'a, B: Debug + Backend> Debug for DisplayPlane<'a, B>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, B> Freeze for DisplayPlane<'a, B>

§

impl<'a, B> RefUnwindSafe for DisplayPlane<'a, B>

§

impl<'a, B> Send for DisplayPlane<'a, B>

§

impl<'a, B> Sync for DisplayPlane<'a, B>

§

impl<'a, B> Unpin for DisplayPlane<'a, B>

§

impl<'a, B> UnwindSafe for DisplayPlane<'a, B>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.