pub enum AtomicName {
WithoutMod(String),
WithMod(String, String),
}Variants§
Implementations§
Source§impl AtomicName
impl AtomicName
pub fn to_latex_string(&self) -> String
Trait Implementations§
Source§impl Clone for AtomicName
impl Clone for AtomicName
Source§fn clone(&self) -> AtomicName
fn clone(&self) -> AtomicName
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 Display for AtomicName
impl Display for AtomicName
Source§impl PartialEq for AtomicName
impl PartialEq for AtomicName
Source§fn eq(&self, other: &AtomicName) -> bool
fn eq(&self, other: &AtomicName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AtomicName
impl StructuralPartialEq for AtomicName
Auto Trait Implementations§
impl Freeze for AtomicName
impl RefUnwindSafe for AtomicName
impl Send for AtomicName
impl Sync for AtomicName
impl Unpin for AtomicName
impl UnsafeUnpin for AtomicName
impl UnwindSafe for AtomicName
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