Struct rushmap_core::result::DomainScanResult
source · pub struct DomainScanResult {
pub probe_id: String,
pub base_domain: String,
pub domains: Vec<Domain>,
pub probe_status: ProbeStatus,
pub start_time: String,
pub end_time: String,
pub elapsed_time: u64,
pub protocol: IpNextLevelProtocol,
pub command_type: CommandType,
}
Fields§
§probe_id: String
§base_domain: String
§domains: Vec<Domain>
§probe_status: ProbeStatus
§start_time: String
start-time in RFC 3339 and ISO 8601 date and time string
end_time: String
end-time in RFC 3339 and ISO 8601 date and time string
elapsed_time: u64
Elapsed time in milliseconds
protocol: IpNextLevelProtocol
§command_type: CommandType
Implementations§
source§impl DomainScanResult
impl DomainScanResult
pub fn new() -> DomainScanResult
Trait Implementations§
source§impl Clone for DomainScanResult
impl Clone for DomainScanResult
source§fn clone(&self) -> DomainScanResult
fn clone(&self) -> DomainScanResult
Returns a copy 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 DomainScanResult
impl Debug for DomainScanResult
source§impl<'de> Deserialize<'de> for DomainScanResult
impl<'de> Deserialize<'de> for DomainScanResult
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 RefUnwindSafe for DomainScanResult
impl Send for DomainScanResult
impl Sync for DomainScanResult
impl Unpin for DomainScanResult
impl UnwindSafe for DomainScanResult
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