pub struct CliOverlay {
pub enabled: bool,
pub command: Option<String>,
pub aliases: Vec<String>,
pub about: Option<String>,
pub long_about: Option<String>,
pub hidden: bool,
pub flags: Vec<Value>,
pub default_output: Option<String>,
pub interactive: bool,
}Fields§
§enabled: bool§command: Option<String>§aliases: Vec<String>§about: Option<String>§long_about: Option<String>§flags: Vec<Value>§default_output: Option<String>§interactive: boolTrait Implementations§
Source§impl Clone for CliOverlay
impl Clone for CliOverlay
Source§fn clone(&self) -> CliOverlay
fn clone(&self) -> CliOverlay
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CliOverlay
impl Debug for CliOverlay
Source§impl<'de> Deserialize<'de> for CliOverlay
impl<'de> Deserialize<'de> for CliOverlay
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 CliOverlay
impl PartialEq for CliOverlay
Source§fn eq(&self, other: &CliOverlay) -> bool
fn eq(&self, other: &CliOverlay) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CliOverlay
impl Serialize for CliOverlay
impl Eq for CliOverlay
impl StructuralPartialEq for CliOverlay
Auto Trait Implementations§
impl Freeze for CliOverlay
impl RefUnwindSafe for CliOverlay
impl Send for CliOverlay
impl Sync for CliOverlay
impl Unpin for CliOverlay
impl UnsafeUnpin for CliOverlay
impl UnwindSafe for CliOverlay
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.