[][src]Struct keybase_bot_api::bot::Bot

pub struct Bot {
    pub username: String,
    pub keybase_path: PathBuf,
    pub home_dir: PathBuf,
    pub listen_threads: Vec<JoinHandle<()>>,
    // some fields omitted
}

Fields

username: Stringkeybase_path: PathBufhome_dir: PathBuflisten_threads: Vec<JoinHandle<()>>

Methods

impl Bot[src]

pub fn new<S>(username: S, paperkey: S) -> Result<Bot, BotError> where
    S: Into<String>, 
[src]

Trait Implementations

impl Chat for Bot[src]

impl Status for Bot[src]

impl Drop for Bot[src]

impl Debug for Bot[src]

Auto Trait Implementations

impl Sync for Bot

impl Send for Bot

impl Unpin for Bot

impl !UnwindSafe for Bot

impl !RefUnwindSafe for Bot

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,