pub struct CliPaths;Implementations§
Source§impl CliPaths
impl CliPaths
pub const ADMIN: &'static str = "admin"
pub const INFRA: &'static str = "infra"
pub const AGENTS: &'static str = "agents"
pub const DB: &'static str = "db"
pub const SERVICES: &'static str = "services"
pub const RUN: &'static str = "run"
pub const MIGRATE: &'static str = "migrate"
pub const SERVE: &'static str = "serve"
pub const fn agent_run_args() -> [&'static str; 3]
pub const fn db_migrate_args() -> [&'static str; 3]
pub const fn db_migrate_cmd() -> &'static str
pub const fn services_serve_cmd() -> &'static str
pub const fn agent_run_cmd_pattern() -> &'static str
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CliPaths
impl RefUnwindSafe for CliPaths
impl Send for CliPaths
impl Sync for CliPaths
impl Unpin for CliPaths
impl UnsafeUnpin for CliPaths
impl UnwindSafe for CliPaths
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<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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