[][src]Struct readme_sync::ManifestBinTarget

pub struct ManifestBinTarget {
    pub name: String,
    pub path: Option<String>,
    pub doc: Option<bool>,
}

Package manifest [[bin]] section.

See https://doc.rust-lang.org/cargo/reference/cargo-targets.html#binaries for more details.

Fields

name: String

The name of the target.

path: Option<String>

The source file of the target.

doc: Option<bool>

Is documented by default.

Trait Implementations

impl Clone for ManifestBinTarget[src]

impl Debug for ManifestBinTarget[src]

impl Default for ManifestBinTarget[src]

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

impl Eq for ManifestBinTarget[src]

impl PartialEq<ManifestBinTarget> for ManifestBinTarget[src]

impl StructuralEq for ManifestBinTarget[src]

impl StructuralPartialEq for ManifestBinTarget[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.