pub enum DomainStatus {
NotConfigured,
SelfHosted {
domain: String,
origin_certificate_ready: bool,
origin_certificate_expires_epoch_seconds: Option<i64>,
origin_ip: String,
},
NotLoggedIn,
NotFound,
InternalError,
}Variants§
NotConfigured
SelfHosted
A project on its owner’s own Cloudflare account. Their edge holds the visitor-facing certificate, so there is no fn0-side DV status to report; what fn0 holds is the origin certificate the worker presents.
Fields
NotLoggedIn
NotFound
InternalError
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DomainStatus
impl<'de> Deserialize<'de> for DomainStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DomainStatus
impl RefUnwindSafe for DomainStatus
impl Send for DomainStatus
impl Sync for DomainStatus
impl Unpin for DomainStatus
impl UnsafeUnpin for DomainStatus
impl UnwindSafe for DomainStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more