[][src]Enum wayland_raw_protocol_bindings::client::wayland::wl_shell_surface::fullscreen_method

#[repr(u32)]
pub enum fullscreen_method {
    default,
    scale,
    driver,
    fill,
    // some variants omitted
}

different method to set the surface fullscreen

Hints to indicate to the compositor how to deal with a conflict between the dimensions of the surface and the dimensions of the output. The compositor is free to ignore this parameter.

Variants

default

no preference, apply default policy

scale

scale, preserve the surface's aspect ratio and center on output

driver

switch output mode to the smallest mode that can fit the surface, add black borders to compensate size mismatch

fill

no upscaling, center on output and add black borders to compensate size mismatch

Methods

impl fullscreen_method[src]

pub fn from_raw(n: u32) -> Option<fullscreen_method>[src]

pub fn to_raw(&self) -> u32[src]

Trait Implementations

impl PartialEq<fullscreen_method> for fullscreen_method[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Clone for fullscreen_method[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for fullscreen_method[src]

impl Debug for fullscreen_method[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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