Struct rushmap_core::option::TargetInfo
source · pub struct TargetInfo {
pub ip_addr: IpAddr,
pub host_name: String,
pub ports: Vec<u16>,
}
Expand description
Target Host Information
Fields§
§ip_addr: IpAddr
§host_name: String
§ports: Vec<u16>
Implementations§
source§impl TargetInfo
impl TargetInfo
pub fn new() -> Self
pub fn new_with_ip_addr(ip_addr: IpAddr) -> Self
pub fn new_with_ip_lookup(ip_addr: IpAddr) -> Self
pub async fn new_with_ip_lookup_async(ip_addr: IpAddr) -> Self
pub fn new_with_socket(ip_addr: IpAddr, port: u16) -> Self
pub fn with_host_name(&mut self, host_name: String) -> TargetInfo
pub fn with_ip_lookup(&mut self) -> TargetInfo
pub async fn with_ip_lookup_async(&mut self) -> TargetInfo
pub fn set_ports_from_range(&mut self, start: u16, end: u16)
pub fn set_ports_from_option(&mut self, option: PortListOption)
pub fn set_ports_from_list(&mut self, file_path: String)
pub fn set_ports_from_csv(&mut self, csv: String)
Trait Implementations§
source§impl Clone for TargetInfo
impl Clone for TargetInfo
source§fn clone(&self) -> TargetInfo
fn clone(&self) -> TargetInfo
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 TargetInfo
impl Debug for TargetInfo
source§impl<'de> Deserialize<'de> for TargetInfo
impl<'de> Deserialize<'de> for TargetInfo
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 PartialEq for TargetInfo
impl PartialEq for TargetInfo
source§fn eq(&self, other: &TargetInfo) -> bool
fn eq(&self, other: &TargetInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TargetInfo
impl Serialize for TargetInfo
impl StructuralPartialEq for TargetInfo
Auto Trait Implementations§
impl RefUnwindSafe for TargetInfo
impl Send for TargetInfo
impl Sync for TargetInfo
impl Unpin for TargetInfo
impl UnwindSafe for TargetInfo
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