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

#[repr(u32)]
#[non_exhaustive]
pub enum FullscreenMethod {
    Default,
    Scale,
    Driver,
    Fill,
}
[]

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 (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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

Implementations

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

impl Debug for FullscreenMethod[src][+]

impl PartialEq<FullscreenMethod> for FullscreenMethod[src][+]

impl StructuralPartialEq for FullscreenMethod[src]

Auto Trait Implementations

impl RefUnwindSafe for FullscreenMethod

impl Send for FullscreenMethod

impl Sync for FullscreenMethod

impl Unpin for FullscreenMethod

impl UnwindSafe for FullscreenMethod

Blanket Implementations

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

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

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

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.