Enum wayland_client::Liveness [] [src]

pub enum Liveness {
    Alive,
    Dead,
    Unmanaged,
}

Represents the state of liveness of a wayland object

Variants

This object is alive and its requests can be called

This object is dead, calling its requests will do nothing and return and error.

This object is not managed by wayland-client, you can call its methods but this might crash the program if it was actually dead.

Trait Implementations

impl Copy for Liveness
[src]

impl Clone for Liveness
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Liveness
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Liveness
[src]