[][src]Enum wayland_server::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 Copy for FullscreenMethod[src]

impl Clone for FullscreenMethod[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<FullscreenMethod> for FullscreenMethod[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Debug for FullscreenMethod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

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

The type returned in the event of a conversion error.

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