[][src]Struct google_appengine1_beta4::ErrorHandler

pub struct ErrorHandler {
    pub error_code: Option<String>,
    pub mime_type: Option<String>,
    pub static_file: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

error_code: Option<String>

Error condition this handler applies to.

mime_type: Option<String>

MIME type of file. Defaults to text/html.

static_file: Option<String>

Static file content to be served for this error.

Trait Implementations

impl Clone for ErrorHandler[src]

impl Debug for ErrorHandler[src]

impl Default for ErrorHandler[src]

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

impl Part for ErrorHandler[src]

impl Serialize 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> 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> 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<T> Typeable for T where
    T: Any