[][src]Struct obofoundry::Product

pub struct Product {
    pub id: String,
    pub name: Option<String>,
    pub is_canonical: Option<bool>,
    pub contact: Option<Contact>,
    pub connects: Vec<Dependency>,
    pub derived_from: Option<String>,
    pub description: Option<String>,
    pub format: Option<String>,
    pub homepage: Option<Url>,
    pub license: Option<String>,
    pub mireots_from: Option<String>,
    pub ontology_purl: Url,
    pub page: Option<String>,
    pub title: Option<String>,
    pub uses: Vec<String>,
    pub taxon: Option<String>,
    pub ty: Option<String>,
}

A released product of an ontology.

Fields

id: Stringname: Option<String>is_canonical: Option<bool>contact: Option<Contact>connects: Vec<Dependency>derived_from: Option<String>description: Option<String>format: Option<String>homepage: Option<Url>license: Option<String>mireots_from: Option<String>ontology_purl: Urlpage: Option<String>title: Option<String>uses: Vec<String>taxon: Option<String>ty: Option<String>

Trait Implementations

impl Eq for Product[src]

impl PartialEq<Product> for Product[src]

impl Hash for Product[src]

impl Debug for Product[src]

impl Serialize for Product[src]

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

Auto Trait Implementations

impl Send for Product

impl Unpin for Product

impl Sync for Product

impl UnwindSafe for Product

impl RefUnwindSafe for Product

Blanket Implementations

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

impl<T> From<T> for 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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]