Struct upcake::Config[][src]

pub struct Config {
    pub env_var_prefix: Option<String>,
    pub location: bool,
    pub insecure: bool,
    pub client_cert: Option<String>,
    pub client_key: Option<String>,
    pub ca_cert: Option<String>,
    pub connect_timeout: Option<u64>,
    pub verbose: bool,
    pub fail_request: bool,
    pub max_response_size: Option<usize>,
    pub requests: Vec<RequestConfig>,
}
Expand description

Configuration applied to all requests

Fields

env_var_prefix: Option<String>

An optional prefix to filter environment variables injected into the template context

location: bool

Follow redirects

insecure: bool

Allow insecure server connections when using SSL

client_cert: Option<String>

Client certificate file

client_key: Option<String>

Private key file

ca_cert: Option<String>

CA certificate to verify against

connect_timeout: Option<u64>

Maximum time allowed for connection

verbose: bool

Verbose output

fail_request: bool

Fail on HTTP error response codes

max_response_size: Option<usize>

Maximum response size in bytes

requests: Vec<RequestConfig>

Requests to run

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.