[][src]Struct cloudflare_rs::endpoints::zone::Meta

pub struct Meta {
    pub custom_certificate_quota: u32,
    pub page_rule_quota: u32,
    pub wildcard_proxiable: bool,
    pub phishing_detected: bool,
    pub multiple_railguns_allowed: bool,
}

Fields

custom_certificate_quota: u32

Maximum custom certificates that can be uploaded/used.

page_rule_quota: u32

Maximum page rules that can be created.

wildcard_proxiable: bool

Indicates whether wildcard DNS records can receive Cloudflare security and performance features

phishing_detected: bool

Indicates if URLs on the zone have been identified as hosting phishing content.

multiple_railguns_allowed: bool

Indicates whether the zone is allowed to be connected to multiple Railguns at once

Trait Implementations

impl Debug for Meta[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Meta

impl Send for Meta

impl Sync for Meta

impl Unpin for Meta

impl UnwindSafe for Meta

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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.