[][src]Enum wayland_client::protocol::wl_shell_surface::FullscreenMethod

#[repr(u32)]
pub enum FullscreenMethod {
    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 FullscreenMethod[src]

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

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

Trait Implementations

impl Clone for FullscreenMethod[src]

impl PartialEq<FullscreenMethod> for FullscreenMethod[src]

impl Copy for FullscreenMethod[src]

impl Debug for FullscreenMethod[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Downcast for T where
    T: Any
[src]