pub struct Main;Trait Implementations§
Source§impl<'c> CLI<'c> for Main
impl<'c> CLI<'c> for Main
const NAME: &'c str = "Statecharts Rhapsody"
const USAGE: &'c str = ""
fn command<'s: 'c>() -> App<'c, 's>
fn additional_usage<'s>(cmd: App<'s, 'c>) -> App<'s, 'c>
fn invoke(_matches: &ArgMatches<'_>) -> Result<()>
fn run_on(matches: &ArgMatches<'_>) -> Result<()>
Auto Trait Implementations§
impl Freeze for Main
impl RefUnwindSafe for Main
impl Send for Main
impl Sync for Main
impl Unpin for Main
impl UnwindSafe for Main
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more