Struct alacritty::cli::WindowOptions
source · pub struct WindowOptions {
pub terminal_options: TerminalOptions,
pub window_identity: WindowIdentity,
}
Expand description
Subset of options that we pass to ‘create-window’ IPC subcommand.
Fields§
§terminal_options: TerminalOptions
Terminal options which can be passed via IPC.
window_identity: WindowIdentity
Window options which could be passed via IPC.
Trait Implementations§
source§impl Args for WindowOptions
impl Args for WindowOptions
source§impl Clone for WindowOptions
impl Clone for WindowOptions
source§fn clone(&self) -> WindowOptions
fn clone(&self) -> WindowOptions
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 WindowOptions
impl Debug for WindowOptions
source§impl Default for WindowOptions
impl Default for WindowOptions
source§fn default() -> WindowOptions
fn default() -> WindowOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WindowOptions
impl<'de> Deserialize<'de> for WindowOptions
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 FromArgMatches for WindowOptions
impl FromArgMatches for WindowOptions
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
.source§impl PartialEq<WindowOptions> for WindowOptions
impl PartialEq<WindowOptions> for WindowOptions
source§fn eq(&self, other: &WindowOptions) -> bool
fn eq(&self, other: &WindowOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WindowOptions
impl Serialize for WindowOptions
impl Eq for WindowOptions
impl StructuralEq for WindowOptions
impl StructuralPartialEq for WindowOptions
Auto Trait Implementations§
impl RefUnwindSafe for WindowOptions
impl Send for WindowOptions
impl Sync for WindowOptions
impl Unpin for WindowOptions
impl UnwindSafe for WindowOptions
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.