[][src]Struct breadx::auto::randr::NotifyMask

#[repr(transparent)]pub struct NotifyMask {
    pub inner: u16,
}

Fields

inner: u16

Implementations

impl NotifyMask[src]

pub fn screen_change(&self) -> bool[src]

pub fn set_screen_change(&mut self, val: bool) -> &mut Self[src]

pub fn crtc_change(&self) -> bool[src]

pub fn set_crtc_change(&mut self, val: bool) -> &mut Self[src]

pub fn output_change(&self) -> bool[src]

pub fn set_output_change(&mut self, val: bool) -> &mut Self[src]

pub fn output_property(&self) -> bool[src]

pub fn set_output_property(&mut self, val: bool) -> &mut Self[src]

pub fn provider_change(&self) -> bool[src]

pub fn set_provider_change(&mut self, val: bool) -> &mut Self[src]

pub fn provider_property(&self) -> bool[src]

pub fn set_provider_property(&mut self, val: bool) -> &mut Self[src]

pub fn resource_change(&self) -> bool[src]

pub fn set_resource_change(&mut self, val: bool) -> &mut Self[src]

pub fn lease(&self) -> bool[src]

pub fn set_lease(&mut self, val: bool) -> &mut Self[src]

pub fn new(
    screen_change: bool,
    crtc_change: bool,
    output_change: bool,
    output_property: bool,
    provider_change: bool,
    provider_property: bool,
    resource_change: bool,
    lease: bool
) -> Self
[src]

pub fn count_ones(&self) -> usize[src]

Trait Implementations

impl AsByteSequence for NotifyMask[src]

impl BitAnd<NotifyMask> for NotifyMask[src]

type Output = NotifyMask

The resulting type after applying the & operator.

impl Clone for NotifyMask[src]

impl Copy for NotifyMask[src]

impl Debug for NotifyMask[src]

impl Default for NotifyMask[src]

impl Eq for NotifyMask[src]

impl Not for NotifyMask[src]

type Output = NotifyMask

The resulting type after applying the ! operator.

impl Ord for NotifyMask[src]

impl PartialEq<NotifyMask> for NotifyMask[src]

impl PartialOrd<NotifyMask> for NotifyMask[src]

impl StructuralEq for NotifyMask[src]

impl StructuralPartialEq for NotifyMask[src]

Auto Trait Implementations

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.