pub struct UffAtomType(pub String);Expand description
Represents an atom type label in UFF (e.g., “C_3”, “N_R”).
Tuple Fields§
§0: StringImplementations§
Trait Implementations§
Source§impl Clone for UffAtomType
impl Clone for UffAtomType
Source§fn clone(&self) -> UffAtomType
fn clone(&self) -> UffAtomType
Returns a duplicate of the value. Read more
1.0.0 · 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 UffAtomType
impl Debug for UffAtomType
Source§impl<'de> Deserialize<'de> for UffAtomType
impl<'de> Deserialize<'de> for UffAtomType
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 UffAtomType
impl PartialEq for UffAtomType
Source§impl Serialize for UffAtomType
impl Serialize for UffAtomType
impl Eq for UffAtomType
impl StructuralPartialEq for UffAtomType
Auto Trait Implementations§
impl Freeze for UffAtomType
impl RefUnwindSafe for UffAtomType
impl Send for UffAtomType
impl Sync for UffAtomType
impl Unpin for UffAtomType
impl UnsafeUnpin for UffAtomType
impl UnwindSafe for UffAtomType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more