Trait Transactable

Source
pub trait Transactable: Send + Sync {
    // Required method
    fn transact(
        &self,
        code: TransactionCode,
        reader: &mut Parcel,
        reply: &mut Parcel,
    ) -> Result<()>;
}
Expand description

A transactable object that can be used to process Binder commands.

Required Methods§

Source

fn transact( &self, code: TransactionCode, reader: &mut Parcel, reply: &mut Parcel, ) -> Result<()>

Implementors§