[][src]Struct cargo_sync_readme::Manifest

pub struct Manifest {
    pub toml: Value,
    pub parent_dir: PathBuf,
}

Fields

toml: Valueparent_dir: PathBuf

Methods

impl Manifest[src]

pub fn find_manifest<P>(dir: P) -> Result<Self, FindManifestError> where
    P: AsRef<Path>, 
[src]

Get the TOML-formatted manifest by looking up the current directory; if not found, go to the parent directory and recursively retry until one is found… eventually.

pub fn entry_point(
    &self,
    prefer_doc_from: Option<PreferDocFrom>
) -> Option<PathBuf>
[src]

Get the path to the file we want to take the documentation from.

pub fn readme(&self) -> PathBuf[src]

Extract the path to the readme file from the manifest.

Trait Implementations

impl Debug for Manifest[src]

Auto Trait Implementations

impl Send for Manifest

impl Sync for Manifest

Blanket Implementations

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.

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

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

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