[][src]Struct heroku_rs::endpoints::logs::get::LogDrainDetails

pub struct LogDrainDetails<'a> {
    pub app_id: &'a str,
    pub drain_id: &'a str,
}

Log Drain Info

Info for existing log drain.

See Heroku documentation for more information about this endpoint

Fields

app_id: &'a str

unique app identifier, either app name, or app id

drain_id: &'a str

unique log drain identifier, either drain id, url or token

Methods

impl<'a> LogDrainDetails<'a>[src]

pub fn new(app_id: &'a str, drain_id: &'a str) -> LogDrainDetails<'a>[src]

Trait Implementations

impl<'a> HerokuEndpoint<LogDrain, (), ()> for LogDrainDetails<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for LogDrainDetails<'a>

impl<'a> Send for LogDrainDetails<'a>

impl<'a> Sync for LogDrainDetails<'a>

impl<'a> Unpin for LogDrainDetails<'a>

impl<'a> UnwindSafe for LogDrainDetails<'a>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.