pub struct TcpSocketScanner;Trait Implementations§
Source§impl SocketScanner for TcpSocketScanner
impl SocketScanner for TcpSocketScanner
fn socket_success<'async_trait>( socket: SocketAddr, timeout: u64, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
fn socket_connect<'async_trait>( socket: SocketAddr, timeout: u64, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
fn pre_scan<'life0, 'async_trait>(
_scan_opts: &'life0 ScanOpts,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
'life0: 'async_trait,
fn pre_send_socket<'life0, 'async_trait>(
_socket: &'life0 SocketAddr,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
'life0: 'async_trait,
fn scan<'async_trait>(
scan_opts: ScanOpts,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Send + 'async_trait,
fn after_scan<'async_trait>() -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
Auto Trait Implementations§
impl Freeze for TcpSocketScanner
impl RefUnwindSafe for TcpSocketScanner
impl Send for TcpSocketScanner
impl Sync for TcpSocketScanner
impl Unpin for TcpSocketScanner
impl UnwindSafe for TcpSocketScanner
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more