Struct alacritty::cli::MessageOptions
source · pub struct MessageOptions {
pub socket: Option<PathBuf>,
pub message: SocketMessage,
}
Expand description
Send a message to the Alacritty socket.
Fields§
§socket: Option<PathBuf>
IPC socket connection path override.
message: SocketMessage
Message which should be sent.
Trait Implementations§
source§impl Args for MessageOptions
impl Args for MessageOptions
source§impl Debug for MessageOptions
impl Debug for MessageOptions
source§impl FromArgMatches for MessageOptions
impl FromArgMatches for MessageOptions
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.