pub enum OrganicInorganic {
Organic,
Inorganic,
Organometallic,
Unknown,
}Expand description
Result of SMILES-based organic / inorganic detection (v0.3).
Variants§
Trait Implementations§
Source§impl Clone for OrganicInorganic
impl Clone for OrganicInorganic
Source§fn clone(&self) -> OrganicInorganic
fn clone(&self) -> OrganicInorganic
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrganicInorganic
impl Debug for OrganicInorganic
Source§impl<'de> Deserialize<'de> for OrganicInorganic
impl<'de> Deserialize<'de> for OrganicInorganic
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OrganicInorganic
impl PartialEq for OrganicInorganic
Source§fn eq(&self, other: &OrganicInorganic) -> bool
fn eq(&self, other: &OrganicInorganic) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OrganicInorganic
impl Serialize for OrganicInorganic
impl StructuralPartialEq for OrganicInorganic
Auto Trait Implementations§
impl Freeze for OrganicInorganic
impl RefUnwindSafe for OrganicInorganic
impl Send for OrganicInorganic
impl Sync for OrganicInorganic
impl Unpin for OrganicInorganic
impl UnsafeUnpin for OrganicInorganic
impl UnwindSafe for OrganicInorganic
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