[][src]Struct rustbus::message_builder::CallBuilder

pub struct CallBuilder<'a, 'e> { /* fields omitted */ }

Methods

impl<'a, 'e> CallBuilder<'a, 'e>[src]

pub fn on(self, object_path: String) -> Self[src]

pub fn with_interface(self, interface: String) -> Self[src]

pub fn at(self, destination: String) -> Self[src]

pub fn with_params<P: Into<Param<'a, 'e>>>(self, params: Vec<P>) -> Self[src]

pub fn build(self) -> Message<'a, 'e>[src]

pub fn add_param<P: Into<Param<'a, 'e>>>(&mut self, p: P)[src]

pub fn add_param2<P1: Into<Param<'a, 'e>>, P2: Into<Param<'a, 'e>>>(
    &mut self,
    p1: P1,
    p2: P2
)
[src]

pub fn add_param3<P1: Into<Param<'a, 'e>>, P2: Into<Param<'a, 'e>>, P3: Into<Param<'a, 'e>>>(
    &mut self,
    p1: P1,
    p2: P2,
    p3: P3
)
[src]

Auto Trait Implementations

impl<'a, 'e> RefUnwindSafe for CallBuilder<'a, 'e>

impl<'a, 'e> Send for CallBuilder<'a, 'e>

impl<'a, 'e> Sync for CallBuilder<'a, 'e>

impl<'a, 'e> Unpin for CallBuilder<'a, 'e> where
    'a: 'e,
    'e: 'a, 

impl<'a, 'e> UnwindSafe for CallBuilder<'a, 'e>

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, 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.