[][src]Struct obofoundry::Ontology

pub struct Ontology {
    pub aberowl_id: Option<String>,
    pub activity_status: ActivityStatus,
    pub alternative_prefix: Option<String>,
    pub biosharing: Option<String>,
    pub browsers: Vec<Browser>,
    pub build: Option<Build>,
    pub canonical: Option<String>,
    pub contact: Option<Contact>,
    pub created_with: Option<String>,
    pub description: Option<String>,
    pub dependencies: Vec<Dependency>,
    pub development: Option<Development>,
    pub depicted_by: Option<String>,
    pub documentation: Option<Url>,
    pub domain: Option<String>,
    pub do_wiki: Option<Url>,
    pub example_class: Option<String>,
    pub facebook: Option<Url>,
    pub funded_by: Vec<String>,
    pub google_plus: Option<String>,
    pub homepage: Option<String>,
    pub id: String,
    pub in_foundry: bool,
    pub in_foundry_order: Option<usize>,
    pub integration_server: Option<String>,
    pub is_obsolete: bool,
    pub jobs: Vec<Job>,
    pub label: Option<String>,
    pub layout: String,
    pub license: Option<License>,
    pub mailing_list: Option<String>,
    pub ontology_purl: Option<Url>,
    pub page: Option<Url>,
    pub preferred_prefix: Option<String>,
    pub products: Vec<Product>,
    pub publications: Vec<Publication>,
    pub redirects: Vec<Redirect>,
    pub releases: Option<String>,
    pub replaced_by: Option<String>,
    pub repository: Option<Url>,
    pub review: Option<Review>,
    pub slack: Option<Url>,
    pub source: Option<String>,
    pub source_url: Option<Url>,
    pub taxon: Option<Taxon>,
    pub termgenie: Option<String>,
    pub title: String,
    pub tracker: Option<Url>,
    pub ty: Option<String>,
    pub twitter: Option<String>,
    pub usages: Vec<Usage>,
    pub validate: Option<bool>,
    pub was_derived_from: Option<String>,
    pub wikidata_template: Option<String>,
}

A comprehensive table of informations about an ontology.

Fields

aberowl_id: Option<String>activity_status: ActivityStatusalternative_prefix: Option<String>biosharing: Option<String>browsers: Vec<Browser>build: Option<Build>canonical: Option<String>contact: Option<Contact>created_with: Option<String>description: Option<String>dependencies: Vec<Dependency>development: Option<Development>depicted_by: Option<String>documentation: Option<Url>domain: Option<String>do_wiki: Option<Url>example_class: Option<String>facebook: Option<Url>funded_by: Vec<String>google_plus: Option<String>homepage: Option<String>id: Stringin_foundry: boolin_foundry_order: Option<usize>integration_server: Option<String>is_obsolete: booljobs: Vec<Job>label: Option<String>layout: Stringlicense: Option<License>mailing_list: Option<String>ontology_purl: Option<Url>page: Option<Url>preferred_prefix: Option<String>products: Vec<Product>publications: Vec<Publication>redirects: Vec<Redirect>releases: Option<String>replaced_by: Option<String>repository: Option<Url>review: Option<Review>slack: Option<Url>source: Option<String>source_url: Option<Url>taxon: Option<Taxon>termgenie: Option<String>title: Stringtracker: Option<Url>ty: Option<String>twitter: Option<String>usages: Vec<Usage>validate: Option<bool>was_derived_from: Option<String>wikidata_template: Option<String>

Trait Implementations

impl Debug for Ontology[src]

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

impl Eq for Ontology[src]

impl Hash for Ontology[src]

impl PartialEq<Ontology> for Ontology[src]

impl Serialize for Ontology[src]

impl StructuralEq for Ontology[src]

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