pagersduty 0.2.0

Rust Client Library for the PagerDuty v2 API
Documentation
use std::result;

/// Custom Result type many `procure` methods return
pub type Result<T> = result::Result<T, Error>;

/// Custom Error type returned with `procure` [`Result`](type.Result.html)'s
#[derive(Debug)]
pub enum Error {
}