[][src]Struct dbus_tree::MTFnMut

pub struct MTFnMut<D = ()>(_);

An abstract type to represent FnMut functions.

Trait Implementations

impl<D: Clone> Clone for MTFnMut<D>[src]

impl<D: Copy> Copy for MTFnMut<D>[src]

impl<D: Debug> Debug for MTFnMut<D>[src]

impl<D: Default> Default for MTFnMut<D>[src]

impl<D: DataType> MethodType<D> for MTFnMut<D>[src]

type GetProp = RefCell<dyn FnMut(&mut IterAppend<'_>, &PropInfo<'_, Self, D>) -> Result<(), MethodErr>>

For internal use.

type SetProp = RefCell<dyn FnMut(&mut Iter<'_>, &PropInfo<'_, Self, D>) -> Result<(), MethodErr>>

For internal use.

type Method = RefCell<dyn FnMut(&MethodInfo<'_, Self, D>) -> MethodResult>

For internal use.

Auto Trait Implementations

impl<D> RefUnwindSafe for MTFnMut<D> where
    D: RefUnwindSafe

impl<D = ()> !Send for MTFnMut<D>

impl<D = ()> !Sync for MTFnMut<D>

impl<D> Unpin for MTFnMut<D>

impl<D> UnwindSafe for MTFnMut<D> where
    D: 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.