Enum dbus::tree::Access [] [src]

pub enum Access {
    Read,
    ReadWrite,
    Write,
}

The possible access characteristics a Property can have.

Variants

Read

The Property can only be read (Get).

ReadWrite

The Property can be read or written.

Write

The Property can only be written (Set).

Trait Implementations

Derived Implementations

impl Debug for Access
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialOrd for Access
[src]

fn partial_cmp(&self, __arg_0: &Access) -> Option<Ordering>

fn lt(&self, other: &Rhs) -> bool
1.0.0

fn le(&self, other: &Rhs) -> bool
1.0.0

fn gt(&self, other: &Rhs) -> bool
1.0.0

fn ge(&self, other: &Rhs) -> bool
1.0.0

impl Ord for Access
[src]

fn cmp(&self, __arg_0: &Access) -> Ordering

impl Eq for Access
[src]

impl PartialEq for Access
[src]

fn eq(&self, __arg_0: &Access) -> bool

fn ne(&self, other: &Rhs) -> bool
1.0.0

impl Clone for Access
[src]

fn clone(&self) -> Access

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

impl Copy for Access
[src]