[][src]Struct cargo_intraconv::Args

pub struct Args { /* fields omitted */ }

Converter from path-based links to intra-doc links for Rust crates.

This is not perfect and the modified files should still be reviewed after running it.

By default it will only print the changes and not apply them, use -a (--apply) to write them.

If you are modifying core or alloc instead of std, you can pass the -c core (--crate core) to mark the change in the root crate.

By default the crate will output the changes it will do (or did when -a is passed). If this is not what you want, use the -q (--quiet) flag to only show errors.

When -q is not given, only files with changes will be displayed.

Trait Implementations

impl Debug for Args[src]

impl FromArgs for Args[src]

impl TopLevelCommand for Args[src]

Auto Trait Implementations

impl RefUnwindSafe for Args

impl Send for Args

impl Sync for Args

impl Unpin for Args

impl UnwindSafe for Args

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.