google-cloud 0.2.1

Asynchronous Rust bindings for Google Cloud Platform gRPC APIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod client;
mod message;
mod subscription;
mod topic;
mod api {
    include!("api/google.pubsub.v1.rs");
}

pub use self::client::*;
pub use self::message::*;
pub use self::subscription::*;
pub use self::topic::*;

/// The error type for the PubSub module.
pub type Error = crate::error::Error;