[][src]Struct cargo_audit::application::CargoAuditApplication

pub struct CargoAuditApplication { /* fields omitted */ }

cargo audit application

Trait Implementations

impl Default for CargoAuditApplication[src]

Initialize a new application instance.

By default no configuration is loaded, and the framework state is initialized to a default, empty state (no components, threads, etc).

impl Debug for CargoAuditApplication[src]

impl Application for CargoAuditApplication[src]

type Cmd = EntryPoint<CargoAuditCommand>

Entrypoint command for this application.

type Cfg = AuditConfig

Application configuration.

type Paths = StandardPaths

Paths to resources within the application.

fn config(&self) -> &AuditConfig[src]

Accessor for application configuration.

fn state(&self) -> &State<Self>[src]

Borrow the application state immutably.

fn state_mut(&mut self) -> &mut State<Self>[src]

Borrow the application state mutably.

fn register_components(
    &mut self,
    command: &Self::Cmd
) -> Result<(), FrameworkError>
[src]

Register all components used by this application.

fn after_config(&mut self, config: Self::Cfg) -> Result<(), FrameworkError>[src]

Post-configuration lifecycle callback.

fn logging_config(&self, command: &EntryPoint<CargoAuditCommand>) -> Config[src]

Get logging configuration from command-line options

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> AsAny for T where
    T: Any
[src]