pub struct Node {
pub tax_id: i64,
pub rank: String,
pub division: String,
pub genetic_code: String,
pub mito_genetic_code: Option<String>,
pub comments: Option<String>,
pub names: HashMap<String, Vec<String>>,
pub format_string: Option<String>,
/* private fields */
}Fields§
§tax_id: i64§rank: String§division: String§genetic_code: String§mito_genetic_code: Option<String>§comments: Option<String>§names: HashMap<String, Vec<String>>§format_string: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more