pub enum GctfTokenKind {
SectionHeader {
name: String,
raw_options: String,
},
Comment(String),
Blank,
Content(String),
AttributeBlock(String),
}Variants§
Trait Implementations§
Source§impl Clone for GctfTokenKind
impl Clone for GctfTokenKind
Source§fn clone(&self) -> GctfTokenKind
fn clone(&self) -> GctfTokenKind
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 GctfTokenKind
impl Debug for GctfTokenKind
Source§impl PartialEq for GctfTokenKind
impl PartialEq for GctfTokenKind
impl StructuralPartialEq for GctfTokenKind
Auto Trait Implementations§
impl Freeze for GctfTokenKind
impl RefUnwindSafe for GctfTokenKind
impl Send for GctfTokenKind
impl Sync for GctfTokenKind
impl Unpin for GctfTokenKind
impl UnsafeUnpin for GctfTokenKind
impl UnwindSafe for GctfTokenKind
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