[][src]Struct ncbitaxonomy::models::Taxon

pub struct Taxon {
    pub id: i32,
    pub ancestry: Option<String>,
    pub name: String,
    pub rank: Option<String>,
}

Fields

id: i32ancestry: Option<String>name: Stringrank: Option<String>

Trait Implementations

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Taxon where
    (i32, Option<String>, String, Option<String>): Queryable<__ST, __DB>, 
[src]

type Row = <(i32, Option<String>, String, Option<String>) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

Auto Trait Implementations

impl RefUnwindSafe for Taxon

impl Send for Taxon

impl Sync for Taxon

impl Unpin for Taxon

impl UnwindSafe for Taxon

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> Erased for T

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

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

impl<T> IntoSql 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.