[][src]Struct dbus::tree::PropInfo

pub struct PropInfo<'a, M: 'a + MethodType<D>, D: 'a + DataType> {
    pub msg: &'a Message,
    pub method: &'a Method<M, D>,
    pub prop: &'a Property<M, D>,
    pub iface: &'a Interface<M, D>,
    pub path: &'a ObjectPath<M, D>,
    pub tree: &'a Tree<M, D>,
}

Contains information about the incoming property get/set request.

Fields

msg: &'a Message

Message

method: &'a Method<M, D>

Get, Set or GetAll

prop: &'a Property<M, D>

The property to be set/get

iface: &'a Interface<M, D>

The interface the property belongs to

path: &'a ObjectPath<M, D>

Object path

tree: &'a Tree<M, D>

Tree

Implementations

impl<'a, M: 'a + MethodType<D>, D: 'a + DataType> PropInfo<'a, M, D>[src]

pub fn to_method_info(&self) -> MethodInfo<'a, M, D>[src]

PropInfo to MethodInfo conversion.

Trait Implementations

impl<'a, M: Clone + 'a + MethodType<D>, D: Clone + 'a + DataType> Clone for PropInfo<'a, M, D>[src]

impl<'a, M: Copy + 'a + MethodType<D>, D: Copy + 'a + DataType> Copy for PropInfo<'a, M, D>[src]

impl<'a, M: Debug + 'a + MethodType<D>, D: Debug + 'a + DataType> Debug for PropInfo<'a, M, D>[src]

Auto Trait Implementations

impl<'a, M, D> RefUnwindSafe for PropInfo<'a, M, D> where
    <M as MethodType<D>>::GetProp: RefUnwindSafe,
    <D as DataType>::Interface: RefUnwindSafe,
    <D as DataType>::Method: RefUnwindSafe,
    <M as MethodType<D>>::Method: RefUnwindSafe,
    <D as DataType>::ObjectPath: RefUnwindSafe,
    <D as DataType>::Property: RefUnwindSafe,
    <M as MethodType<D>>::SetProp: RefUnwindSafe,
    <D as DataType>::Signal: RefUnwindSafe,
    <D as DataType>::Tree: RefUnwindSafe

impl<'a, M, D> !Send for PropInfo<'a, M, D>

impl<'a, M, D> !Sync for PropInfo<'a, M, D>

impl<'a, M, D> Unpin for PropInfo<'a, M, D>

impl<'a, M, D> UnwindSafe for PropInfo<'a, M, D> where
    <M as MethodType<D>>::GetProp: RefUnwindSafe,
    <D as DataType>::Interface: RefUnwindSafe,
    <D as DataType>::Method: RefUnwindSafe,
    <M as MethodType<D>>::Method: RefUnwindSafe,
    <D as DataType>::ObjectPath: RefUnwindSafe,
    <D as DataType>::Property: RefUnwindSafe,
    <M as MethodType<D>>::SetProp: RefUnwindSafe,
    <D as DataType>::Signal: RefUnwindSafe,
    <D as DataType>::Tree: RefUnwindSafe

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.