[][src]Struct rusoto_dataexchange::JobError

pub struct JobError {
    pub code: String,
    pub details: Option<Details>,
    pub limit_name: Option<String>,
    pub limit_value: Option<f64>,
    pub message: String,
    pub resource_id: Option<String>,
    pub resource_type: Option<String>,
}

An error that occurred with the job request.

Fields

code: String

The code for the job error.

details: Option<Details>limit_name: Option<String>

The name of the limit that was reached.

limit_value: Option<f64>

The value of the exceeded limit.

message: String

The message related to the job error.

resource_id: Option<String>

The unique identifier for the resource related to the error.

resource_type: Option<String>

The type of resource related to the error.

Trait Implementations

impl Clone for JobError[src]

impl Debug for JobError[src]

impl Default for JobError[src]

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

impl PartialEq<JobError> for JobError[src]

impl StructuralPartialEq for JobError[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.