pub struct BuiltinDelimiterRecord {
pub name: &'static str,
pub is_control_sequence: bool,
pub allowed_mode: AllowedMode,
pub unicode_value: &'static str,
pub attributes: BuiltinCharacterAttributes,
}Fields§
§name: &'static str§is_control_sequence: bool§allowed_mode: AllowedMode§unicode_value: &'static str§attributes: BuiltinCharacterAttributesTrait Implementations§
Source§impl Clone for BuiltinDelimiterRecord
impl Clone for BuiltinDelimiterRecord
Source§fn clone(&self) -> BuiltinDelimiterRecord
fn clone(&self) -> BuiltinDelimiterRecord
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 moreimpl Copy for BuiltinDelimiterRecord
Source§impl Debug for BuiltinDelimiterRecord
impl Debug for BuiltinDelimiterRecord
impl Eq for BuiltinDelimiterRecord
Source§impl PartialEq for BuiltinDelimiterRecord
impl PartialEq for BuiltinDelimiterRecord
Source§fn eq(&self, other: &BuiltinDelimiterRecord) -> bool
fn eq(&self, other: &BuiltinDelimiterRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BuiltinDelimiterRecord
Auto Trait Implementations§
impl Freeze for BuiltinDelimiterRecord
impl RefUnwindSafe for BuiltinDelimiterRecord
impl Send for BuiltinDelimiterRecord
impl Sync for BuiltinDelimiterRecord
impl Unpin for BuiltinDelimiterRecord
impl UnsafeUnpin for BuiltinDelimiterRecord
impl UnwindSafe for BuiltinDelimiterRecord
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.