pub struct SubdomainDetail {
pub host: String,
pub status: Option<u16>,
pub resolution_error: Option<String>,
}Available on crate feature
subdomain-discovery only.Fields§
§host: String§status: Option<u16>§resolution_error: Option<String>Trait Implementations§
Source§impl Clone for SubdomainDetail
impl Clone for SubdomainDetail
Source§fn clone(&self) -> SubdomainDetail
fn clone(&self) -> SubdomainDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SubdomainDetail
impl Debug for SubdomainDetail
Source§impl<'de> Deserialize<'de> for SubdomainDetail
impl<'de> Deserialize<'de> for SubdomainDetail
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 SubdomainDetail
impl RefUnwindSafe for SubdomainDetail
impl Send for SubdomainDetail
impl Sync for SubdomainDetail
impl Unpin for SubdomainDetail
impl UnsafeUnpin for SubdomainDetail
impl UnwindSafe for SubdomainDetail
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