[][src]Struct gcp_client::google::appengine::v1::ErrorHandler

pub struct ErrorHandler {
    pub error_code: i32,
    pub static_file: String,
    pub mime_type: String,
}

Custom static error page to be served when an error occurs.

Fields

error_code: i32

Error condition this handler applies to.

static_file: String

Static file content to be served for this error.

mime_type: String

MIME type of file. Defaults to text/html.

Implementations

impl ErrorHandler[src]

pub fn error_code(&self) -> ErrorCode[src]

Returns the enum value of error_code, or the default if the field is set to an invalid enum value.

pub fn set_error_code(&mut self, value: ErrorCode)[src]

Sets error_code to the provided enum value.

Trait Implementations

impl Clone for ErrorHandler[src]

impl Debug for ErrorHandler[src]

impl Default for ErrorHandler[src]

impl Message for ErrorHandler[src]

impl PartialEq<ErrorHandler> for ErrorHandler[src]

impl StructuralPartialEq for ErrorHandler[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]