pub struct HttpUpdate {
pub check_error: Option<Status>,
pub desired: Option<String>,
pub discovered: Option<String>,
pub last_check_time: Option<DateTime<Utc>>,
pub path: Option<String>,
}Expand description
A file you can add to your existing, non-Hosting hosting service that confirms your intent to allow Hosting’s Certificate Authorities to create an SSL certificate for your domain.
This type is not used in any activity, and only used as part of another schema.
Fields§
§check_error: Option<Status>Output only. An error encountered during the last contents check. If null, the check completed successfully.
desired: Option<String>Output only. A text string to serve at the path.
discovered: Option<String>Output only. Whether Hosting was able to find the required file contents on the specified path during its last check.
last_check_time: Option<DateTime<Utc>>Output only. The last time Hosting systems checked for the file contents.
path: Option<String>Output only. The path to the file.
Trait Implementations§
Source§impl Clone for HttpUpdate
impl Clone for HttpUpdate
Source§fn clone(&self) -> HttpUpdate
fn clone(&self) -> HttpUpdate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HttpUpdate
impl Debug for HttpUpdate
Source§impl Default for HttpUpdate
impl Default for HttpUpdate
Source§fn default() -> HttpUpdate
fn default() -> HttpUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HttpUpdate
impl<'de> Deserialize<'de> for HttpUpdate
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
Source§impl Serialize for HttpUpdate
impl Serialize for HttpUpdate
impl Part for HttpUpdate
Auto Trait Implementations§
impl Freeze for HttpUpdate
impl RefUnwindSafe for HttpUpdate
impl Send for HttpUpdate
impl Sync for HttpUpdate
impl Unpin for HttpUpdate
impl UnwindSafe for HttpUpdate
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