pub struct PartialCfg<'a> {
pub tags: HashSet<&'a str>,
pub prefix: Option<(bool, bool)>,
pub command: bool,
pub params: Vec<usize>,
pub trailing: bool,
}
Fields§
§prefix: Option<(bool, bool)>
§command: bool
§params: Vec<usize>
§trailing: bool
Trait Implementations§
Source§impl<'a> Clone for PartialCfg<'a>
impl<'a> Clone for PartialCfg<'a>
Source§fn clone(&self) -> PartialCfg<'a>
fn clone(&self) -> PartialCfg<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for PartialCfg<'a>
impl<'a> RefUnwindSafe for PartialCfg<'a>
impl<'a> Send for PartialCfg<'a>
impl<'a> Sync for PartialCfg<'a>
impl<'a> Unpin for PartialCfg<'a>
impl<'a> UnwindSafe for PartialCfg<'a>
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