Enum expo_server_sdk::GzipPolicy[][src]

pub enum GzipPolicy {
    ZipGreaterThan1024Bytes,
    Never,
    Always,
}

The policy under which we will gzip the request body that is sent to the push notification servers

Variants

Gzip only if the body is greater than 1024 bytes

Never Gzip the request body

Always Gzip the request body

Trait Implementations

impl Default for GzipPolicy
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for GzipPolicy

impl Sync for GzipPolicy