[][src]Struct carapax::prelude::Api

pub struct Api { /* fields omitted */ }

Telegram Bot API client

Methods

impl Api[src]

pub fn new<T, P>(token: T, proxy: Option<P>) -> Result<Api, Error> where
    P: AsRef<str>,
    T: Into<String>, 
[src]

Creates a client

Arguments

  • token - Bot API token
  • proxy - Optional proxy

Proxy format:

  • http://[user:password]host:port
  • https://[user:password]@host:port
  • socks4://userid@host:port
  • socks5://[user:password]@host:port

pub fn execute<M>(&self, method: &M) -> ApiFuture<<M as Method>::Response> where
    M: Method,
    <M as Method>::Response: DeserializeOwned,
    <M as Method>::Response: Send,
    <M as Method>::Response: 'static, 
[src]

Executes a method

pub fn spawn<F, T, E>(&self, f: F) where
    E: Debug,
    F: Future<Item = T, Error = E> + 'static + Send
[src]

Spawns a future on the default executor.

Trait Implementations

impl From<Api> for UpdatesStream[src]

impl Clone for Api[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Api

impl Sync for Api

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T