[][src]Trait goa::ClientExt

pub trait ClientExt: 'static {
    fn get_accounts(&self) -> Vec<Object>;
fn get_manager(&self) -> Option<Manager>;
fn lookup_by_id(&self, id: &str) -> Option<Object>;
fn connect_account_added<F: Fn(&Self, &Object) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_account_changed<F: Fn(&Self, &Object) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_account_removed<F: Fn(&Self, &Object) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_object_manager_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_accounts(&self) -> Vec<Object>

fn get_manager(&self) -> Option<Manager>

fn lookup_by_id(&self, id: &str) -> Option<Object>

fn connect_account_added<F: Fn(&Self, &Object) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_account_changed<F: Fn(&Self, &Object) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_account_removed<F: Fn(&Self, &Object) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_object_manager_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<Client>> ClientExt for O[src]

Loading content...