[][src]Struct readme_sync::ManifestDocsRsMetadata

pub struct ManifestDocsRsMetadata {
    pub features: Option<HashSet<String>>,
    pub all_features: Option<bool>,
    pub no_default_features: Option<bool>,
    pub default_target: Option<String>,
    pub targets: Option<Vec<String>>,
}

Manifest metadata that customize docs.rs builds.

See https://docs.rs/about/metadata for more details

Fields

features: Option<HashSet<String>>

Features to pass to Cargo (default: []).alloc

all_features: Option<bool>

Whether to pass --all-features to Cargo (default: false).

no_default_features: Option<bool>

Whether to pass --no-default-features to Cargo (default: false).

default_target: Option<String>

Target to test build on, used as the default landing page.

targets: Option<Vec<String>>

Targets to build.

Trait Implementations

impl Clone for ManifestDocsRsMetadata[src]

impl Debug for ManifestDocsRsMetadata[src]

impl<'de> Deserialize<'de> for ManifestDocsRsMetadata[src]

impl Eq for ManifestDocsRsMetadata[src]

impl PartialEq<ManifestDocsRsMetadata> for ManifestDocsRsMetadata[src]

impl StructuralEq for ManifestDocsRsMetadata[src]

impl StructuralPartialEq for ManifestDocsRsMetadata[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.