Struct jsonc_parser::ast::NullKeyword
source · pub struct NullKeyword {
pub range: Range,
}
Expand description
Represents the null keyword (ex. null
).
Fields§
§range: Range
Trait Implementations§
source§impl Clone for NullKeyword
impl Clone for NullKeyword
source§fn clone(&self) -> NullKeyword
fn clone(&self) -> NullKeyword
Returns a copy of the value. Read more
1.0.0 · 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 NullKeyword
impl Debug for NullKeyword
source§impl<'a, 'b> From<&'b NullKeyword> for Node<'a, 'b>
impl<'a, 'b> From<&'b NullKeyword> for Node<'a, 'b>
source§fn from(node: &'b NullKeyword) -> Node<'a, 'b>
fn from(node: &'b NullKeyword) -> Node<'a, 'b>
Converts to this type from the input type.
source§impl PartialEq<NullKeyword> for NullKeyword
impl PartialEq<NullKeyword> for NullKeyword
source§fn eq(&self, other: &NullKeyword) -> bool
fn eq(&self, other: &NullKeyword) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Ranged for NullKeyword
impl Ranged for NullKeyword
impl StructuralPartialEq for NullKeyword
Auto Trait Implementations§
impl RefUnwindSafe for NullKeyword
impl Send for NullKeyword
impl Sync for NullKeyword
impl Unpin for NullKeyword
impl UnwindSafe for NullKeyword
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