pub struct OptionTerminalConstPtr(pub SyntaxStablePtrId);
Tuple Fields§
§0: SyntaxStablePtrId
Trait Implementations§
Source§impl Clone for OptionTerminalConstPtr
impl Clone for OptionTerminalConstPtr
Source§fn clone(&self) -> OptionTerminalConstPtr
fn clone(&self) -> OptionTerminalConstPtr
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 OptionTerminalConstPtr
impl Debug for OptionTerminalConstPtr
Source§impl From<OptionTerminalConstEmptyPtr> for OptionTerminalConstPtr
impl From<OptionTerminalConstEmptyPtr> for OptionTerminalConstPtr
Source§fn from(value: OptionTerminalConstEmptyPtr) -> Self
fn from(value: OptionTerminalConstEmptyPtr) -> Self
Converts to this type from the input type.
Source§impl From<OptionTerminalConstPtr> for SyntaxStablePtrId
impl From<OptionTerminalConstPtr> for SyntaxStablePtrId
Source§fn from(ptr: OptionTerminalConstPtr) -> Self
fn from(ptr: OptionTerminalConstPtr) -> Self
Converts to this type from the input type.
Source§impl From<TerminalConstPtr> for OptionTerminalConstPtr
impl From<TerminalConstPtr> for OptionTerminalConstPtr
Source§fn from(value: TerminalConstPtr) -> Self
fn from(value: TerminalConstPtr) -> Self
Converts to this type from the input type.
Source§impl Hash for OptionTerminalConstPtr
impl Hash for OptionTerminalConstPtr
Source§impl PartialEq for OptionTerminalConstPtr
impl PartialEq for OptionTerminalConstPtr
Source§impl TypedStablePtr for OptionTerminalConstPtr
impl TypedStablePtr for OptionTerminalConstPtr
type SyntaxNode = OptionTerminalConst
Source§fn untyped(&self) -> SyntaxStablePtrId
fn untyped(&self) -> SyntaxStablePtrId
Returns the untyped stable pointer.
Source§fn lookup(&self, db: &dyn SyntaxGroup) -> OptionTerminalConst
fn lookup(&self, db: &dyn SyntaxGroup) -> OptionTerminalConst
Returns the syntax node pointed to by this stable pointer.
impl Copy for OptionTerminalConstPtr
impl Eq for OptionTerminalConstPtr
impl StructuralPartialEq for OptionTerminalConstPtr
Auto Trait Implementations§
impl Freeze for OptionTerminalConstPtr
impl RefUnwindSafe for OptionTerminalConstPtr
impl Send for OptionTerminalConstPtr
impl Sync for OptionTerminalConstPtr
impl Unpin for OptionTerminalConstPtr
impl UnwindSafe for OptionTerminalConstPtr
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more