pub struct ActiveDelimiterRecord {
pub name: &'static str,
pub is_control_sequence: bool,
pub allowed_mode: AllowedMode,
pub unicode_value: String,
pub attributes: CharacterAttributes,
pub package: String,
}Fields§
§name: &'static str§is_control_sequence: bool§allowed_mode: AllowedMode§unicode_value: String§attributes: CharacterAttributes§package: StringTrait Implementations§
Source§impl Clone for ActiveDelimiterRecord
impl Clone for ActiveDelimiterRecord
Source§fn clone(&self) -> ActiveDelimiterRecord
fn clone(&self) -> ActiveDelimiterRecord
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 ActiveDelimiterRecord
impl Debug for ActiveDelimiterRecord
impl Eq for ActiveDelimiterRecord
Source§impl PartialEq for ActiveDelimiterRecord
impl PartialEq for ActiveDelimiterRecord
Source§fn eq(&self, other: &ActiveDelimiterRecord) -> bool
fn eq(&self, other: &ActiveDelimiterRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActiveDelimiterRecord
Auto Trait Implementations§
impl Freeze for ActiveDelimiterRecord
impl RefUnwindSafe for ActiveDelimiterRecord
impl Send for ActiveDelimiterRecord
impl Sync for ActiveDelimiterRecord
impl Unpin for ActiveDelimiterRecord
impl UnsafeUnpin for ActiveDelimiterRecord
impl UnwindSafe for ActiveDelimiterRecord
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.