Struct jira::gen::models::failed_webhooks::FailedWebhooks[][src]

pub struct FailedWebhooks {
    pub values: Vec<FailedWebhook>,
    pub max_results: i32,
    pub next: Option<String>,
}

FailedWebhooks : A page of failed webhooks.

Fields

values: Vec<FailedWebhook>

The list of webhooks.

max_results: i32

The maximum number of items on the page. If the list of values is shorter than this number, then there are no more pages.

next: Option<String>

The URL to the next page of results. Present only if the request returned at least one result.The next page may be empty at the time of receiving the response, but new failed webhooks may appear in time. You can save the URL to the next page and query for new results periodically (for example, every hour).

Implementations

impl FailedWebhooks[src]

pub fn new(values: Vec<FailedWebhook>, max_results: i32) -> FailedWebhooks[src]

A page of failed webhooks.

Trait Implementations

impl Clone for FailedWebhooks[src]

impl Debug for FailedWebhooks[src]

impl<'de> Deserialize<'de> for FailedWebhooks[src]

impl PartialEq<FailedWebhooks> for FailedWebhooks[src]

impl Serialize for FailedWebhooks[src]

impl StructuralPartialEq for FailedWebhooks[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.