[][src]Struct packapp::PlistData

pub struct PlistData {
    pub name: Option<String>,
    pub display_name: Option<String>,
    pub identifier: Option<String>,
    pub version: Option<String>,
    pub package_type: Option<PackageType>,
    pub executable: Option<String>,
    pub icon_file: Option<PathBuf>,
    pub signature: Option<String>,
    pub high_res: Option<bool>,
    pub document_types: Option<Vec<DocumentType>>,
    pub is_agent: Option<bool>,
}

Fields

name: Option<String>display_name: Option<String>identifier: Option<String>version: Option<String>package_type: Option<PackageType>executable: Option<String>icon_file: Option<PathBuf>signature: Option<String>high_res: Option<bool>document_types: Option<Vec<DocumentType>>is_agent: Option<bool>

Trait Implementations

impl Clone for PlistData[src]

impl Debug for PlistData[src]

impl Default for PlistData[src]

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

impl Serialize for PlistData[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.