pub struct CsName(/* private fields */);
Expand description
String type used to represent control sequence names in Texlang.
The implementation of this type is opaque so that it can be performance optimized without worrying about downstream consumers.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for CsName
impl<'de> Deserialize<'de> for CsName
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 Ord for CsName
impl Ord for CsName
source§impl PartialEq<CsName> for CsName
impl PartialEq<CsName> for CsName
source§impl PartialOrd<CsName> for CsName
impl PartialOrd<CsName> for CsName
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for CsName
impl Eq for CsName
impl StructuralEq for CsName
impl StructuralPartialEq for CsName
Auto Trait Implementations§
impl RefUnwindSafe for CsName
impl Send for CsName
impl Sync for CsName
impl Unpin for CsName
impl UnwindSafe for CsName
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