pub struct UnsignedIntegerType(/* private fields */);Expand description
Unsigned Integer[N] — the two-word legacy numeric type form.
Trait Implementations§
Source§impl AstNode for UnsignedIntegerType
impl AstNode for UnsignedIntegerType
Source§fn can_cast(kind: SyntaxKind) -> bool
fn can_cast(kind: SyntaxKind) -> bool
Returns
true if a SyntaxNode with the given kind can be cast to
this AST type.Source§fn cast(node: SyntaxNode) -> Option<Self>
fn cast(node: SyntaxNode) -> Option<Self>
Attempt to cast a
SyntaxNode into this AST type. Read moreSource§fn syntax(&self) -> &SyntaxNode
fn syntax(&self) -> &SyntaxNode
Return a reference to the underlying
SyntaxNode.Source§impl Clone for UnsignedIntegerType
impl Clone for UnsignedIntegerType
Source§fn clone(&self) -> UnsignedIntegerType
fn clone(&self) -> UnsignedIntegerType
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 UnsignedIntegerType
impl Debug for UnsignedIntegerType
Source§impl Hash for UnsignedIntegerType
impl Hash for UnsignedIntegerType
Source§impl PartialEq for UnsignedIntegerType
impl PartialEq for UnsignedIntegerType
Source§fn eq(&self, other: &UnsignedIntegerType) -> bool
fn eq(&self, other: &UnsignedIntegerType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UnsignedIntegerType
impl StructuralPartialEq for UnsignedIntegerType
Auto Trait Implementations§
impl Freeze for UnsignedIntegerType
impl !RefUnwindSafe for UnsignedIntegerType
impl !Send for UnsignedIntegerType
impl !Sync for UnsignedIntegerType
impl Unpin for UnsignedIntegerType
impl UnsafeUnpin for UnsignedIntegerType
impl !UnwindSafe for UnsignedIntegerType
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