pub struct SocatListen {
pub guest_type: GuestType,
pub host_port: u32,
}
Expand description
Listen through socat on the specified port. Usage: guest socat listen guest-type host-port
Fields§
§guest_type: GuestType
type of the guest
host_port: u32
host port number to accept incoming guest connections on
Trait Implementations§
Source§impl ArgsInfo for SocatListen
impl ArgsInfo for SocatListen
Source§fn get_args_info() -> CommandInfoWithArgs
fn get_args_info() -> CommandInfoWithArgs
Returns the argument info.
§fn get_subcommands() -> Vec<SubCommandInfo<'static>>
fn get_subcommands() -> Vec<SubCommandInfo<'static>>
Returns the list of subcommands
Source§impl Debug for SocatListen
impl Debug for SocatListen
Source§impl FromArgs for SocatListen
impl FromArgs for SocatListen
Source§fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
__cmd_name: &[&str],
__args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( __cmd_name: &[&str], __args: &[&str], ) -> Result<Vec<String>, EarlyExit>
Get a String with just the argument names, e.g., options, flags, subcommands, etc, but
without the values of the options and arguments. This can be useful as a means to capture
anonymous usage statistics without revealing the content entered by the end user. Read more
Source§impl PartialEq for SocatListen
impl PartialEq for SocatListen
Source§impl SubCommand for SocatListen
impl SubCommand for SocatListen
impl StructuralPartialEq for SocatListen
Auto Trait Implementations§
impl Freeze for SocatListen
impl RefUnwindSafe for SocatListen
impl Send for SocatListen
impl Sync for SocatListen
impl Unpin for SocatListen
impl UnwindSafe for SocatListen
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
§impl<T> SubCommands for Twhere
T: SubCommand,
impl<T> SubCommands for Twhere
T: SubCommand,
§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.