pub struct Http {Show 18 fields
pub status: i64,
pub robots_hash: Option<i64>,
pub redirects: Vec<Redirect>,
pub securitytxt: Option<String>,
pub title: Option<String>,
pub sitemap_hash: Option<i64>,
pub robots: Option<String>,
pub server: Option<String>,
pub headers_hash: i64,
pub host: String,
pub html: String,
pub location: String,
pub components: Option<HashMap<String, Component>>,
pub html_hash: i64,
pub sitemap: Option<String>,
pub securitytxt_hash: Option<i64>,
pub favicon: Option<Favicon>,
pub waf: Option<String>,
}
Fields§
§status: i64
§robots_hash: Option<i64>
§redirects: Vec<Redirect>
§securitytxt: Option<String>
§title: Option<String>
§sitemap_hash: Option<i64>
§robots: Option<String>
§server: Option<String>
§headers_hash: i64
§host: String
§html: String
§location: String
§components: Option<HashMap<String, Component>>
§html_hash: i64
§sitemap: Option<String>
§securitytxt_hash: Option<i64>
§favicon: Option<Favicon>
§waf: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Http
impl<'de> Deserialize<'de> for Http
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 Http
impl RefUnwindSafe for Http
impl Send for Http
impl Sync for Http
impl Unpin for Http
impl UnwindSafe for Http
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