cairo_lang_syntax::node::ids

Struct SyntaxStablePtrId

source
pub struct SyntaxStablePtrId(/* private fields */);

Implementations§

source§

impl SyntaxStablePtrId

source

pub fn lookup(&self, db: &dyn SyntaxGroup) -> SyntaxNode

Lookups a syntax node using a stable syntax pointer. Should only be called on the root from which the stable pointer was generated.

source

pub fn file_id(&self, db: &dyn SyntaxGroup) -> FileId

source

pub fn parent(&self, db: &dyn SyntaxGroup) -> SyntaxStablePtrId

Returns the stable pointer of the parent of this stable pointer. Assumes that the parent exists (that is, self is not the root). Panics otherwise.

source

pub fn nth_parent(&self, db: &dyn SyntaxGroup, n: usize) -> SyntaxStablePtrId

Returns the stable pointer of the nth parent of this stable pointer. n = 0: returns itself. n = 1: return the parent. n = 2: return the grand parent. And so on… Assumes that the nth parent exists. Panics otherwise.

source

pub fn kind(&self, db: &dyn SyntaxGroup) -> SyntaxKind

Returns the kind of this stable pointer. Assumes that self is not the root. Panics otherwise.

Trait Implementations§

source§

impl Clone for SyntaxStablePtrId

source§

fn clone(&self) -> SyntaxStablePtrId

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SyntaxStablePtrId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: ?Sized + Upcast<dyn SyntaxGroup + 'static>> DebugWithDb<T> for SyntaxStablePtrId

source§

fn fmt(&self, f: &mut Formatter<'_>, db: &T) -> Result

source§

fn debug<'me, 'db>(&'me self, db: &'me Db) -> DebugWith<'me, Db>
where Self: Sized + 'me,

source§

fn into_debug<'me, 'db>(self, db: &'me Db) -> DebugWith<'me, Db>
where Self: Sized + 'me,

source§

impl From<&AliasClause> for SyntaxStablePtrId

source§

fn from(node: &AliasClause) -> Self

Converts to this type from the input type.
source§

impl From<&Arg> for SyntaxStablePtrId

source§

fn from(node: &Arg) -> Self

Converts to this type from the input type.
source§

impl From<&ArgClause> for SyntaxStablePtrId

source§

fn from(node: &ArgClause) -> Self

Converts to this type from the input type.
source§

impl From<&ArgClauseFieldInitShorthand> for SyntaxStablePtrId

source§

fn from(node: &ArgClauseFieldInitShorthand) -> Self

Converts to this type from the input type.
source§

impl From<&ArgClauseNamed> for SyntaxStablePtrId

source§

fn from(node: &ArgClauseNamed) -> Self

Converts to this type from the input type.
source§

impl From<&ArgClauseUnnamed> for SyntaxStablePtrId

source§

fn from(node: &ArgClauseUnnamed) -> Self

Converts to this type from the input type.
source§

impl From<&ArgList> for SyntaxStablePtrId

source§

fn from(node: &ArgList) -> Self

Converts to this type from the input type.
source§

impl From<&ArgListBraced> for SyntaxStablePtrId

source§

fn from(node: &ArgListBraced) -> Self

Converts to this type from the input type.
source§

impl From<&ArgListBracketed> for SyntaxStablePtrId

source§

fn from(node: &ArgListBracketed) -> Self

Converts to this type from the input type.
source§

impl From<&ArgListParenthesized> for SyntaxStablePtrId

source§

fn from(node: &ArgListParenthesized) -> Self

Converts to this type from the input type.
source§

impl From<&Attribute> for SyntaxStablePtrId

source§

fn from(node: &Attribute) -> Self

Converts to this type from the input type.
source§

impl From<&AttributeList> for SyntaxStablePtrId

source§

fn from(node: &AttributeList) -> Self

Converts to this type from the input type.
source§

impl From<&BinaryOperator> for SyntaxStablePtrId

source§

fn from(node: &BinaryOperator) -> Self

Converts to this type from the input type.
source§

impl From<&BlockOrIf> for SyntaxStablePtrId

source§

fn from(node: &BlockOrIf) -> Self

Converts to this type from the input type.
source§

impl From<&ClosureParamWrapper> for SyntaxStablePtrId

source§

fn from(node: &ClosureParamWrapper) -> Self

Converts to this type from the input type.
source§

impl From<&ClosureParamWrapperNAry> for SyntaxStablePtrId

source§

fn from(node: &ClosureParamWrapperNAry) -> Self

Converts to this type from the input type.
source§

impl From<&Condition> for SyntaxStablePtrId

source§

fn from(node: &Condition) -> Self

Converts to this type from the input type.
source§

impl From<&ConditionExpr> for SyntaxStablePtrId

source§

fn from(node: &ConditionExpr) -> Self

Converts to this type from the input type.
source§

impl From<&ConditionLet> for SyntaxStablePtrId

source§

fn from(node: &ConditionLet) -> Self

Converts to this type from the input type.
source§

impl From<&ElseClause> for SyntaxStablePtrId

source§

fn from(node: &ElseClause) -> Self

Converts to this type from the input type.
source§

impl From<&Expr> for SyntaxStablePtrId

source§

fn from(node: &Expr) -> Self

Converts to this type from the input type.
source§

impl From<&ExprBinary> for SyntaxStablePtrId

source§

fn from(node: &ExprBinary) -> Self

Converts to this type from the input type.
source§

impl From<&ExprBlock> for SyntaxStablePtrId

source§

fn from(node: &ExprBlock) -> Self

Converts to this type from the input type.
source§

impl From<&ExprClause> for SyntaxStablePtrId

source§

fn from(node: &ExprClause) -> Self

Converts to this type from the input type.
source§

impl From<&ExprClosure> for SyntaxStablePtrId

source§

fn from(node: &ExprClosure) -> Self

Converts to this type from the input type.
source§

impl From<&ExprErrorPropagate> for SyntaxStablePtrId

source§

fn from(node: &ExprErrorPropagate) -> Self

Converts to this type from the input type.
source§

impl From<&ExprFieldInitShorthand> for SyntaxStablePtrId

source§

fn from(node: &ExprFieldInitShorthand) -> Self

Converts to this type from the input type.
source§

impl From<&ExprFixedSizeArray> for SyntaxStablePtrId

source§

fn from(node: &ExprFixedSizeArray) -> Self

Converts to this type from the input type.
source§

impl From<&ExprFor> for SyntaxStablePtrId

source§

fn from(node: &ExprFor) -> Self

Converts to this type from the input type.
source§

impl From<&ExprFunctionCall> for SyntaxStablePtrId

source§

fn from(node: &ExprFunctionCall) -> Self

Converts to this type from the input type.
source§

impl From<&ExprIf> for SyntaxStablePtrId

source§

fn from(node: &ExprIf) -> Self

Converts to this type from the input type.
source§

impl From<&ExprIndexed> for SyntaxStablePtrId

source§

fn from(node: &ExprIndexed) -> Self

Converts to this type from the input type.
source§

impl From<&ExprInlineMacro> for SyntaxStablePtrId

source§

fn from(node: &ExprInlineMacro) -> Self

Converts to this type from the input type.
source§

impl From<&ExprList> for SyntaxStablePtrId

source§

fn from(node: &ExprList) -> Self

Converts to this type from the input type.
source§

impl From<&ExprListParenthesized> for SyntaxStablePtrId

source§

fn from(node: &ExprListParenthesized) -> Self

Converts to this type from the input type.
source§

impl From<&ExprLoop> for SyntaxStablePtrId

source§

fn from(node: &ExprLoop) -> Self

Converts to this type from the input type.
source§

impl From<&ExprMatch> for SyntaxStablePtrId

source§

fn from(node: &ExprMatch) -> Self

Converts to this type from the input type.
source§

impl From<&ExprMissing> for SyntaxStablePtrId

source§

fn from(node: &ExprMissing) -> Self

Converts to this type from the input type.
source§

impl From<&ExprParenthesized> for SyntaxStablePtrId

source§

fn from(node: &ExprParenthesized) -> Self

Converts to this type from the input type.
source§

impl From<&ExprPath> for SyntaxStablePtrId

source§

fn from(node: &ExprPath) -> Self

Converts to this type from the input type.
source§

impl From<&ExprStructCtorCall> for SyntaxStablePtrId

source§

fn from(node: &ExprStructCtorCall) -> Self

Converts to this type from the input type.
source§

impl From<&ExprUnary> for SyntaxStablePtrId

source§

fn from(node: &ExprUnary) -> Self

Converts to this type from the input type.
source§

impl From<&ExprWhile> for SyntaxStablePtrId

source§

fn from(node: &ExprWhile) -> Self

Converts to this type from the input type.
source§

impl From<&FixedSizeArraySize> for SyntaxStablePtrId

source§

fn from(node: &FixedSizeArraySize) -> Self

Converts to this type from the input type.
source§

impl From<&FunctionDeclaration> for SyntaxStablePtrId

source§

fn from(node: &FunctionDeclaration) -> Self

Converts to this type from the input type.
source§

impl From<&FunctionSignature> for SyntaxStablePtrId

source§

fn from(node: &FunctionSignature) -> Self

Converts to this type from the input type.
source§

impl From<&FunctionWithBody> for SyntaxStablePtrId

source§

fn from(node: &FunctionWithBody) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArg> for SyntaxStablePtrId

source§

fn from(node: &GenericArg) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgList> for SyntaxStablePtrId

source§

fn from(node: &GenericArgList) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgNamed> for SyntaxStablePtrId

source§

fn from(node: &GenericArgNamed) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgUnnamed> for SyntaxStablePtrId

source§

fn from(node: &GenericArgUnnamed) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgValue> for SyntaxStablePtrId

source§

fn from(node: &GenericArgValue) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgValueExpr> for SyntaxStablePtrId

source§

fn from(node: &GenericArgValueExpr) -> Self

Converts to this type from the input type.
source§

impl From<&GenericArgs> for SyntaxStablePtrId

source§

fn from(node: &GenericArgs) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParam> for SyntaxStablePtrId

source§

fn from(node: &GenericParam) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamConst> for SyntaxStablePtrId

source§

fn from(node: &GenericParamConst) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamImplAnonymous> for SyntaxStablePtrId

source§

fn from(node: &GenericParamImplAnonymous) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamImplNamed> for SyntaxStablePtrId

source§

fn from(node: &GenericParamImplNamed) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamList> for SyntaxStablePtrId

source§

fn from(node: &GenericParamList) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamNegativeImpl> for SyntaxStablePtrId

source§

fn from(node: &GenericParamNegativeImpl) -> Self

Converts to this type from the input type.
source§

impl From<&GenericParamType> for SyntaxStablePtrId

source§

fn from(node: &GenericParamType) -> Self

Converts to this type from the input type.
source§

impl From<&ImplBody> for SyntaxStablePtrId

source§

fn from(node: &ImplBody) -> Self

Converts to this type from the input type.
source§

impl From<&ImplItem> for SyntaxStablePtrId

source§

fn from(node: &ImplItem) -> Self

Converts to this type from the input type.
source§

impl From<&ImplItemList> for SyntaxStablePtrId

source§

fn from(node: &ImplItemList) -> Self

Converts to this type from the input type.
source§

impl From<&ImplItemMissing> for SyntaxStablePtrId

source§

fn from(node: &ImplItemMissing) -> Self

Converts to this type from the input type.
source§

impl From<&ImplicitsClause> for SyntaxStablePtrId

source§

fn from(node: &ImplicitsClause) -> Self

Converts to this type from the input type.
source§

impl From<&ImplicitsList> for SyntaxStablePtrId

source§

fn from(node: &ImplicitsList) -> Self

Converts to this type from the input type.
source§

impl From<&ItemConstant> for SyntaxStablePtrId

source§

fn from(node: &ItemConstant) -> Self

Converts to this type from the input type.
source§

impl From<&ItemEnum> for SyntaxStablePtrId

source§

fn from(node: &ItemEnum) -> Self

Converts to this type from the input type.
source§

impl From<&ItemExternFunction> for SyntaxStablePtrId

source§

fn from(node: &ItemExternFunction) -> Self

Converts to this type from the input type.
source§

impl From<&ItemExternType> for SyntaxStablePtrId

source§

fn from(node: &ItemExternType) -> Self

Converts to this type from the input type.
source§

impl From<&ItemHeaderDoc> for SyntaxStablePtrId

source§

fn from(node: &ItemHeaderDoc) -> Self

Converts to this type from the input type.
source§

impl From<&ItemImpl> for SyntaxStablePtrId

source§

fn from(node: &ItemImpl) -> Self

Converts to this type from the input type.
source§

impl From<&ItemImplAlias> for SyntaxStablePtrId

source§

fn from(node: &ItemImplAlias) -> Self

Converts to this type from the input type.
source§

impl From<&ItemInlineMacro> for SyntaxStablePtrId

source§

fn from(node: &ItemInlineMacro) -> Self

Converts to this type from the input type.
source§

impl From<&ItemModule> for SyntaxStablePtrId

source§

fn from(node: &ItemModule) -> Self

Converts to this type from the input type.
source§

impl From<&ItemStruct> for SyntaxStablePtrId

source§

fn from(node: &ItemStruct) -> Self

Converts to this type from the input type.
source§

impl From<&ItemTrait> for SyntaxStablePtrId

source§

fn from(node: &ItemTrait) -> Self

Converts to this type from the input type.
source§

impl From<&ItemTypeAlias> for SyntaxStablePtrId

source§

fn from(node: &ItemTypeAlias) -> Self

Converts to this type from the input type.
source§

impl From<&ItemUse> for SyntaxStablePtrId

source§

fn from(node: &ItemUse) -> Self

Converts to this type from the input type.
source§

impl From<&MatchArm> for SyntaxStablePtrId

source§

fn from(node: &MatchArm) -> Self

Converts to this type from the input type.
source§

impl From<&MatchArms> for SyntaxStablePtrId

source§

fn from(node: &MatchArms) -> Self

Converts to this type from the input type.
source§

impl From<&MaybeImplBody> for SyntaxStablePtrId

source§

fn from(node: &MaybeImplBody) -> Self

Converts to this type from the input type.
source§

impl From<&MaybeModuleBody> for SyntaxStablePtrId

source§

fn from(node: &MaybeModuleBody) -> Self

Converts to this type from the input type.
source§

impl From<&MaybeTraitBody> for SyntaxStablePtrId

source§

fn from(node: &MaybeTraitBody) -> Self

Converts to this type from the input type.
source§

impl From<&MaybeTraitFunctionBody> for SyntaxStablePtrId

source§

fn from(node: &MaybeTraitFunctionBody) -> Self

Converts to this type from the input type.
source§

impl From<&Member> for SyntaxStablePtrId

source§

fn from(node: &Member) -> Self

Converts to this type from the input type.
source§

impl From<&MemberList> for SyntaxStablePtrId

source§

fn from(node: &MemberList) -> Self

Converts to this type from the input type.
source§

impl From<&Modifier> for SyntaxStablePtrId

source§

fn from(node: &Modifier) -> Self

Converts to this type from the input type.
source§

impl From<&ModifierList> for SyntaxStablePtrId

source§

fn from(node: &ModifierList) -> Self

Converts to this type from the input type.
source§

impl From<&ModuleBody> for SyntaxStablePtrId

source§

fn from(node: &ModuleBody) -> Self

Converts to this type from the input type.
source§

impl From<&ModuleItem> for SyntaxStablePtrId

source§

fn from(node: &ModuleItem) -> Self

Converts to this type from the input type.
source§

impl From<&ModuleItemList> for SyntaxStablePtrId

source§

fn from(node: &ModuleItemList) -> Self

Converts to this type from the input type.
source§

impl From<&ModuleItemMissing> for SyntaxStablePtrId

source§

fn from(node: &ModuleItemMissing) -> Self

Converts to this type from the input type.
source§

impl From<&OptionAliasClause> for SyntaxStablePtrId

source§

fn from(node: &OptionAliasClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionAliasClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionAliasClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionArgListParenthesized> for SyntaxStablePtrId

source§

fn from(node: &OptionArgListParenthesized) -> Self

Converts to this type from the input type.
source§

impl From<&OptionArgListParenthesizedEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionArgListParenthesizedEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionElseClause> for SyntaxStablePtrId

source§

fn from(node: &OptionElseClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionElseClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionElseClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionExprClause> for SyntaxStablePtrId

source§

fn from(node: &OptionExprClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionExprClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionExprClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionFixedSizeArraySize> for SyntaxStablePtrId

source§

fn from(node: &OptionFixedSizeArraySize) -> Self

Converts to this type from the input type.
source§

impl From<&OptionFixedSizeArraySizeEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionFixedSizeArraySizeEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionImplicitsClause> for SyntaxStablePtrId

source§

fn from(node: &OptionImplicitsClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionImplicitsClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionImplicitsClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionPatternEnumInnerPattern> for SyntaxStablePtrId

source§

fn from(node: &OptionPatternEnumInnerPattern) -> Self

Converts to this type from the input type.
source§

impl From<&OptionPatternEnumInnerPatternEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionPatternEnumInnerPatternEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionReturnTypeClause> for SyntaxStablePtrId

source§

fn from(node: &OptionReturnTypeClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionReturnTypeClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionReturnTypeClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionStructArgExpr> for SyntaxStablePtrId

source§

fn from(node: &OptionStructArgExpr) -> Self

Converts to this type from the input type.
source§

impl From<&OptionStructArgExprEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionStructArgExprEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalColonColon> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalColonColon) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalColonColonEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalColonColonEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalNoPanic> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalNoPanic) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalNoPanicEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalNoPanicEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalSemicolon> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalSemicolon) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTerminalSemicolonEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionTerminalSemicolonEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTypeClause> for SyntaxStablePtrId

source§

fn from(node: &OptionTypeClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionTypeClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionTypeClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionVisibilityPubArgumentClause> for SyntaxStablePtrId

source§

fn from(node: &OptionVisibilityPubArgumentClause) -> Self

Converts to this type from the input type.
source§

impl From<&OptionVisibilityPubArgumentClauseEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionVisibilityPubArgumentClauseEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&OptionWrappedGenericParamList> for SyntaxStablePtrId

source§

fn from(node: &OptionWrappedGenericParamList) -> Self

Converts to this type from the input type.
source§

impl From<&OptionWrappedGenericParamListEmpty> for SyntaxStablePtrId

source§

fn from(node: &OptionWrappedGenericParamListEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&Param> for SyntaxStablePtrId

source§

fn from(node: &Param) -> Self

Converts to this type from the input type.
source§

impl From<&ParamList> for SyntaxStablePtrId

source§

fn from(node: &ParamList) -> Self

Converts to this type from the input type.
source§

impl From<&PathSegment> for SyntaxStablePtrId

source§

fn from(node: &PathSegment) -> Self

Converts to this type from the input type.
source§

impl From<&PathSegmentSimple> for SyntaxStablePtrId

source§

fn from(node: &PathSegmentSimple) -> Self

Converts to this type from the input type.
source§

impl From<&PathSegmentWithGenericArgs> for SyntaxStablePtrId

source§

fn from(node: &PathSegmentWithGenericArgs) -> Self

Converts to this type from the input type.
source§

impl From<&Pattern> for SyntaxStablePtrId

source§

fn from(node: &Pattern) -> Self

Converts to this type from the input type.
source§

impl From<&PatternEnum> for SyntaxStablePtrId

source§

fn from(node: &PatternEnum) -> Self

Converts to this type from the input type.
source§

impl From<&PatternEnumInnerPattern> for SyntaxStablePtrId

source§

fn from(node: &PatternEnumInnerPattern) -> Self

Converts to this type from the input type.
source§

impl From<&PatternFixedSizeArray> for SyntaxStablePtrId

source§

fn from(node: &PatternFixedSizeArray) -> Self

Converts to this type from the input type.
source§

impl From<&PatternIdentifier> for SyntaxStablePtrId

source§

fn from(node: &PatternIdentifier) -> Self

Converts to this type from the input type.
source§

impl From<&PatternList> for SyntaxStablePtrId

source§

fn from(node: &PatternList) -> Self

Converts to this type from the input type.
source§

impl From<&PatternListOr> for SyntaxStablePtrId

source§

fn from(node: &PatternListOr) -> Self

Converts to this type from the input type.
source§

impl From<&PatternStruct> for SyntaxStablePtrId

source§

fn from(node: &PatternStruct) -> Self

Converts to this type from the input type.
source§

impl From<&PatternStructParam> for SyntaxStablePtrId

source§

fn from(node: &PatternStructParam) -> Self

Converts to this type from the input type.
source§

impl From<&PatternStructParamList> for SyntaxStablePtrId

source§

fn from(node: &PatternStructParamList) -> Self

Converts to this type from the input type.
source§

impl From<&PatternStructParamWithExpr> for SyntaxStablePtrId

source§

fn from(node: &PatternStructParamWithExpr) -> Self

Converts to this type from the input type.
source§

impl From<&PatternTuple> for SyntaxStablePtrId

source§

fn from(node: &PatternTuple) -> Self

Converts to this type from the input type.
source§

impl From<&ReturnTypeClause> for SyntaxStablePtrId

source§

fn from(node: &ReturnTypeClause) -> Self

Converts to this type from the input type.
source§

impl From<&SkippedNode> for SyntaxStablePtrId

source§

fn from(node: &SkippedNode) -> Self

Converts to this type from the input type.
source§

impl From<&Statement> for SyntaxStablePtrId

source§

fn from(node: &Statement) -> Self

Converts to this type from the input type.
source§

impl From<&StatementBreak> for SyntaxStablePtrId

source§

fn from(node: &StatementBreak) -> Self

Converts to this type from the input type.
source§

impl From<&StatementContinue> for SyntaxStablePtrId

source§

fn from(node: &StatementContinue) -> Self

Converts to this type from the input type.
source§

impl From<&StatementExpr> for SyntaxStablePtrId

source§

fn from(node: &StatementExpr) -> Self

Converts to this type from the input type.
source§

impl From<&StatementItem> for SyntaxStablePtrId

source§

fn from(node: &StatementItem) -> Self

Converts to this type from the input type.
source§

impl From<&StatementLet> for SyntaxStablePtrId

source§

fn from(node: &StatementLet) -> Self

Converts to this type from the input type.
source§

impl From<&StatementList> for SyntaxStablePtrId

source§

fn from(node: &StatementList) -> Self

Converts to this type from the input type.
source§

impl From<&StatementMissing> for SyntaxStablePtrId

source§

fn from(node: &StatementMissing) -> Self

Converts to this type from the input type.
source§

impl From<&StatementReturn> for SyntaxStablePtrId

source§

fn from(node: &StatementReturn) -> Self

Converts to this type from the input type.
source§

impl From<&StructArg> for SyntaxStablePtrId

source§

fn from(node: &StructArg) -> Self

Converts to this type from the input type.
source§

impl From<&StructArgExpr> for SyntaxStablePtrId

source§

fn from(node: &StructArgExpr) -> Self

Converts to this type from the input type.
source§

impl From<&StructArgList> for SyntaxStablePtrId

source§

fn from(node: &StructArgList) -> Self

Converts to this type from the input type.
source§

impl From<&StructArgListBraced> for SyntaxStablePtrId

source§

fn from(node: &StructArgListBraced) -> Self

Converts to this type from the input type.
source§

impl From<&StructArgSingle> for SyntaxStablePtrId

source§

fn from(node: &StructArgSingle) -> Self

Converts to this type from the input type.
source§

impl From<&StructArgTail> for SyntaxStablePtrId

source§

fn from(node: &StructArgTail) -> Self

Converts to this type from the input type.
source§

impl From<&SyntaxFile> for SyntaxStablePtrId

source§

fn from(node: &SyntaxFile) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalAnd> for SyntaxStablePtrId

source§

fn from(node: &TerminalAnd) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalAndAnd> for SyntaxStablePtrId

source§

fn from(node: &TerminalAndAnd) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalArrow> for SyntaxStablePtrId

source§

fn from(node: &TerminalArrow) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalAs> for SyntaxStablePtrId

source§

fn from(node: &TerminalAs) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalAt> for SyntaxStablePtrId

source§

fn from(node: &TerminalAt) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalBadCharacters> for SyntaxStablePtrId

source§

fn from(node: &TerminalBadCharacters) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalBitNot> for SyntaxStablePtrId

source§

fn from(node: &TerminalBitNot) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalBreak> for SyntaxStablePtrId

source§

fn from(node: &TerminalBreak) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalColon> for SyntaxStablePtrId

source§

fn from(node: &TerminalColon) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalColonColon> for SyntaxStablePtrId

source§

fn from(node: &TerminalColonColon) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalComma> for SyntaxStablePtrId

source§

fn from(node: &TerminalComma) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalConst> for SyntaxStablePtrId

source§

fn from(node: &TerminalConst) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalContinue> for SyntaxStablePtrId

source§

fn from(node: &TerminalContinue) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalDiv> for SyntaxStablePtrId

source§

fn from(node: &TerminalDiv) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalDivEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalDivEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalDot> for SyntaxStablePtrId

source§

fn from(node: &TerminalDot) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalDotDot> for SyntaxStablePtrId

source§

fn from(node: &TerminalDotDot) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalElse> for SyntaxStablePtrId

source§

fn from(node: &TerminalElse) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalEmpty> for SyntaxStablePtrId

source§

fn from(node: &TerminalEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalEndOfFile> for SyntaxStablePtrId

source§

fn from(node: &TerminalEndOfFile) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalEnum> for SyntaxStablePtrId

source§

fn from(node: &TerminalEnum) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalEqEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalEqEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalExtern> for SyntaxStablePtrId

source§

fn from(node: &TerminalExtern) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalFalse> for SyntaxStablePtrId

source§

fn from(node: &TerminalFalse) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalFor> for SyntaxStablePtrId

source§

fn from(node: &TerminalFor) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalFunction> for SyntaxStablePtrId

source§

fn from(node: &TerminalFunction) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalGE> for SyntaxStablePtrId

source§

fn from(node: &TerminalGE) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalGT> for SyntaxStablePtrId

source§

fn from(node: &TerminalGT) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalHash> for SyntaxStablePtrId

source§

fn from(node: &TerminalHash) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalIdentifier> for SyntaxStablePtrId

source§

fn from(node: &TerminalIdentifier) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalIf> for SyntaxStablePtrId

source§

fn from(node: &TerminalIf) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalImpl> for SyntaxStablePtrId

source§

fn from(node: &TerminalImpl) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalImplicits> for SyntaxStablePtrId

source§

fn from(node: &TerminalImplicits) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLBrace> for SyntaxStablePtrId

source§

fn from(node: &TerminalLBrace) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLBrack> for SyntaxStablePtrId

source§

fn from(node: &TerminalLBrack) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLE> for SyntaxStablePtrId

source§

fn from(node: &TerminalLE) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLParen> for SyntaxStablePtrId

source§

fn from(node: &TerminalLParen) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLT> for SyntaxStablePtrId

source§

fn from(node: &TerminalLT) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLet> for SyntaxStablePtrId

source§

fn from(node: &TerminalLet) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLiteralNumber> for SyntaxStablePtrId

source§

fn from(node: &TerminalLiteralNumber) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalLoop> for SyntaxStablePtrId

source§

fn from(node: &TerminalLoop) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMatch> for SyntaxStablePtrId

source§

fn from(node: &TerminalMatch) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMatchArrow> for SyntaxStablePtrId

source§

fn from(node: &TerminalMatchArrow) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMinus> for SyntaxStablePtrId

source§

fn from(node: &TerminalMinus) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMinusEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalMinusEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMod> for SyntaxStablePtrId

source§

fn from(node: &TerminalMod) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalModEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalModEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalModule> for SyntaxStablePtrId

source§

fn from(node: &TerminalModule) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMul> for SyntaxStablePtrId

source§

fn from(node: &TerminalMul) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMulEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalMulEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalMut> for SyntaxStablePtrId

source§

fn from(node: &TerminalMut) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalNeq> for SyntaxStablePtrId

source§

fn from(node: &TerminalNeq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalNoPanic> for SyntaxStablePtrId

source§

fn from(node: &TerminalNoPanic) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalNot> for SyntaxStablePtrId

source§

fn from(node: &TerminalNot) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalOf> for SyntaxStablePtrId

source§

fn from(node: &TerminalOf) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalOr> for SyntaxStablePtrId

source§

fn from(node: &TerminalOr) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalOrOr> for SyntaxStablePtrId

source§

fn from(node: &TerminalOrOr) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalPlus> for SyntaxStablePtrId

source§

fn from(node: &TerminalPlus) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalPlusEq> for SyntaxStablePtrId

source§

fn from(node: &TerminalPlusEq) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalPub> for SyntaxStablePtrId

source§

fn from(node: &TerminalPub) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalQuestionMark> for SyntaxStablePtrId

source§

fn from(node: &TerminalQuestionMark) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalRBrace> for SyntaxStablePtrId

source§

fn from(node: &TerminalRBrace) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalRBrack> for SyntaxStablePtrId

source§

fn from(node: &TerminalRBrack) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalRParen> for SyntaxStablePtrId

source§

fn from(node: &TerminalRParen) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalRef> for SyntaxStablePtrId

source§

fn from(node: &TerminalRef) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalReturn> for SyntaxStablePtrId

source§

fn from(node: &TerminalReturn) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalSemicolon> for SyntaxStablePtrId

source§

fn from(node: &TerminalSemicolon) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalShortString> for SyntaxStablePtrId

source§

fn from(node: &TerminalShortString) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalString> for SyntaxStablePtrId

source§

fn from(node: &TerminalString) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalStruct> for SyntaxStablePtrId

source§

fn from(node: &TerminalStruct) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalTrait> for SyntaxStablePtrId

source§

fn from(node: &TerminalTrait) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalTrue> for SyntaxStablePtrId

source§

fn from(node: &TerminalTrue) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalType> for SyntaxStablePtrId

source§

fn from(node: &TerminalType) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalUnderscore> for SyntaxStablePtrId

source§

fn from(node: &TerminalUnderscore) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalUse> for SyntaxStablePtrId

source§

fn from(node: &TerminalUse) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalWhile> for SyntaxStablePtrId

source§

fn from(node: &TerminalWhile) -> Self

Converts to this type from the input type.
source§

impl From<&TerminalXor> for SyntaxStablePtrId

source§

fn from(node: &TerminalXor) -> Self

Converts to this type from the input type.
source§

impl From<&TokenAnd> for SyntaxStablePtrId

source§

fn from(node: &TokenAnd) -> Self

Converts to this type from the input type.
source§

impl From<&TokenAndAnd> for SyntaxStablePtrId

source§

fn from(node: &TokenAndAnd) -> Self

Converts to this type from the input type.
source§

impl From<&TokenArrow> for SyntaxStablePtrId

source§

fn from(node: &TokenArrow) -> Self

Converts to this type from the input type.
source§

impl From<&TokenAs> for SyntaxStablePtrId

source§

fn from(node: &TokenAs) -> Self

Converts to this type from the input type.
source§

impl From<&TokenAt> for SyntaxStablePtrId

source§

fn from(node: &TokenAt) -> Self

Converts to this type from the input type.
source§

impl From<&TokenBadCharacters> for SyntaxStablePtrId

source§

fn from(node: &TokenBadCharacters) -> Self

Converts to this type from the input type.
source§

impl From<&TokenBitNot> for SyntaxStablePtrId

source§

fn from(node: &TokenBitNot) -> Self

Converts to this type from the input type.
source§

impl From<&TokenBreak> for SyntaxStablePtrId

source§

fn from(node: &TokenBreak) -> Self

Converts to this type from the input type.
source§

impl From<&TokenColon> for SyntaxStablePtrId

source§

fn from(node: &TokenColon) -> Self

Converts to this type from the input type.
source§

impl From<&TokenColonColon> for SyntaxStablePtrId

source§

fn from(node: &TokenColonColon) -> Self

Converts to this type from the input type.
source§

impl From<&TokenComma> for SyntaxStablePtrId

source§

fn from(node: &TokenComma) -> Self

Converts to this type from the input type.
source§

impl From<&TokenConst> for SyntaxStablePtrId

source§

fn from(node: &TokenConst) -> Self

Converts to this type from the input type.
source§

impl From<&TokenContinue> for SyntaxStablePtrId

source§

fn from(node: &TokenContinue) -> Self

Converts to this type from the input type.
source§

impl From<&TokenDiv> for SyntaxStablePtrId

source§

fn from(node: &TokenDiv) -> Self

Converts to this type from the input type.
source§

impl From<&TokenDivEq> for SyntaxStablePtrId

source§

fn from(node: &TokenDivEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenDot> for SyntaxStablePtrId

source§

fn from(node: &TokenDot) -> Self

Converts to this type from the input type.
source§

impl From<&TokenDotDot> for SyntaxStablePtrId

source§

fn from(node: &TokenDotDot) -> Self

Converts to this type from the input type.
source§

impl From<&TokenElse> for SyntaxStablePtrId

source§

fn from(node: &TokenElse) -> Self

Converts to this type from the input type.
source§

impl From<&TokenEmpty> for SyntaxStablePtrId

source§

fn from(node: &TokenEmpty) -> Self

Converts to this type from the input type.
source§

impl From<&TokenEndOfFile> for SyntaxStablePtrId

source§

fn from(node: &TokenEndOfFile) -> Self

Converts to this type from the input type.
source§

impl From<&TokenEnum> for SyntaxStablePtrId

source§

fn from(node: &TokenEnum) -> Self

Converts to this type from the input type.
source§

impl From<&TokenEq> for SyntaxStablePtrId

source§

fn from(node: &TokenEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenEqEq> for SyntaxStablePtrId

source§

fn from(node: &TokenEqEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenExtern> for SyntaxStablePtrId

source§

fn from(node: &TokenExtern) -> Self

Converts to this type from the input type.
source§

impl From<&TokenFalse> for SyntaxStablePtrId

source§

fn from(node: &TokenFalse) -> Self

Converts to this type from the input type.
source§

impl From<&TokenFor> for SyntaxStablePtrId

source§

fn from(node: &TokenFor) -> Self

Converts to this type from the input type.
source§

impl From<&TokenFunction> for SyntaxStablePtrId

source§

fn from(node: &TokenFunction) -> Self

Converts to this type from the input type.
source§

impl From<&TokenGE> for SyntaxStablePtrId

source§

fn from(node: &TokenGE) -> Self

Converts to this type from the input type.
source§

impl From<&TokenGT> for SyntaxStablePtrId

source§

fn from(node: &TokenGT) -> Self

Converts to this type from the input type.
source§

impl From<&TokenHash> for SyntaxStablePtrId

source§

fn from(node: &TokenHash) -> Self

Converts to this type from the input type.
source§

impl From<&TokenIdentifier> for SyntaxStablePtrId

source§

fn from(node: &TokenIdentifier) -> Self

Converts to this type from the input type.
source§

impl From<&TokenIf> for SyntaxStablePtrId

source§

fn from(node: &TokenIf) -> Self

Converts to this type from the input type.
source§

impl From<&TokenImpl> for SyntaxStablePtrId

source§

fn from(node: &TokenImpl) -> Self

Converts to this type from the input type.
source§

impl From<&TokenImplicits> for SyntaxStablePtrId

source§

fn from(node: &TokenImplicits) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLBrace> for SyntaxStablePtrId

source§

fn from(node: &TokenLBrace) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLBrack> for SyntaxStablePtrId

source§

fn from(node: &TokenLBrack) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLE> for SyntaxStablePtrId

source§

fn from(node: &TokenLE) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLParen> for SyntaxStablePtrId

source§

fn from(node: &TokenLParen) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLT> for SyntaxStablePtrId

source§

fn from(node: &TokenLT) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLet> for SyntaxStablePtrId

source§

fn from(node: &TokenLet) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLiteralNumber> for SyntaxStablePtrId

source§

fn from(node: &TokenLiteralNumber) -> Self

Converts to this type from the input type.
source§

impl From<&TokenLoop> for SyntaxStablePtrId

source§

fn from(node: &TokenLoop) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMatch> for SyntaxStablePtrId

source§

fn from(node: &TokenMatch) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMatchArrow> for SyntaxStablePtrId

source§

fn from(node: &TokenMatchArrow) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMinus> for SyntaxStablePtrId

source§

fn from(node: &TokenMinus) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMinusEq> for SyntaxStablePtrId

source§

fn from(node: &TokenMinusEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMissing> for SyntaxStablePtrId

source§

fn from(node: &TokenMissing) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMod> for SyntaxStablePtrId

source§

fn from(node: &TokenMod) -> Self

Converts to this type from the input type.
source§

impl From<&TokenModEq> for SyntaxStablePtrId

source§

fn from(node: &TokenModEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenModule> for SyntaxStablePtrId

source§

fn from(node: &TokenModule) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMul> for SyntaxStablePtrId

source§

fn from(node: &TokenMul) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMulEq> for SyntaxStablePtrId

source§

fn from(node: &TokenMulEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenMut> for SyntaxStablePtrId

source§

fn from(node: &TokenMut) -> Self

Converts to this type from the input type.
source§

impl From<&TokenNeq> for SyntaxStablePtrId

source§

fn from(node: &TokenNeq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenNewline> for SyntaxStablePtrId

source§

fn from(node: &TokenNewline) -> Self

Converts to this type from the input type.
source§

impl From<&TokenNoPanic> for SyntaxStablePtrId

source§

fn from(node: &TokenNoPanic) -> Self

Converts to this type from the input type.
source§

impl From<&TokenNode> for SyntaxStablePtrId

source§

fn from(node: &TokenNode) -> Self

Converts to this type from the input type.
source§

impl From<&TokenNot> for SyntaxStablePtrId

source§

fn from(node: &TokenNot) -> Self

Converts to this type from the input type.
source§

impl From<&TokenOf> for SyntaxStablePtrId

source§

fn from(node: &TokenOf) -> Self

Converts to this type from the input type.
source§

impl From<&TokenOr> for SyntaxStablePtrId

source§

fn from(node: &TokenOr) -> Self

Converts to this type from the input type.
source§

impl From<&TokenOrOr> for SyntaxStablePtrId

source§

fn from(node: &TokenOrOr) -> Self

Converts to this type from the input type.
source§

impl From<&TokenPlus> for SyntaxStablePtrId

source§

fn from(node: &TokenPlus) -> Self

Converts to this type from the input type.
source§

impl From<&TokenPlusEq> for SyntaxStablePtrId

source§

fn from(node: &TokenPlusEq) -> Self

Converts to this type from the input type.
source§

impl From<&TokenPub> for SyntaxStablePtrId

source§

fn from(node: &TokenPub) -> Self

Converts to this type from the input type.
source§

impl From<&TokenQuestionMark> for SyntaxStablePtrId

source§

fn from(node: &TokenQuestionMark) -> Self

Converts to this type from the input type.
source§

impl From<&TokenRBrace> for SyntaxStablePtrId

source§

fn from(node: &TokenRBrace) -> Self

Converts to this type from the input type.
source§

impl From<&TokenRBrack> for SyntaxStablePtrId

source§

fn from(node: &TokenRBrack) -> Self

Converts to this type from the input type.
source§

impl From<&TokenRParen> for SyntaxStablePtrId

source§

fn from(node: &TokenRParen) -> Self

Converts to this type from the input type.
source§

impl From<&TokenRef> for SyntaxStablePtrId

source§

fn from(node: &TokenRef) -> Self

Converts to this type from the input type.
source§

impl From<&TokenReturn> for SyntaxStablePtrId

source§

fn from(node: &TokenReturn) -> Self

Converts to this type from the input type.
source§

impl From<&TokenSemicolon> for SyntaxStablePtrId

source§

fn from(node: &TokenSemicolon) -> Self

Converts to this type from the input type.
source§

impl From<&TokenShortString> for SyntaxStablePtrId

source§

fn from(node: &TokenShortString) -> Self

Converts to this type from the input type.
source§

impl From<&TokenSingleLineComment> for SyntaxStablePtrId

source§

fn from(node: &TokenSingleLineComment) -> Self

Converts to this type from the input type.
source§

impl From<&TokenSingleLineDocComment> for SyntaxStablePtrId

source§

fn from(node: &TokenSingleLineDocComment) -> Self

Converts to this type from the input type.
source§

impl From<&TokenSingleLineInnerComment> for SyntaxStablePtrId

source§

fn from(node: &TokenSingleLineInnerComment) -> Self

Converts to this type from the input type.
source§

impl From<&TokenSkipped> for SyntaxStablePtrId

source§

fn from(node: &TokenSkipped) -> Self

Converts to this type from the input type.
source§

impl From<&TokenString> for SyntaxStablePtrId

source§

fn from(node: &TokenString) -> Self

Converts to this type from the input type.
source§

impl From<&TokenStruct> for SyntaxStablePtrId

source§

fn from(node: &TokenStruct) -> Self

Converts to this type from the input type.
source§

impl From<&TokenTrait> for SyntaxStablePtrId

source§

fn from(node: &TokenTrait) -> Self

Converts to this type from the input type.
source§

impl From<&TokenTrue> for SyntaxStablePtrId

source§

fn from(node: &TokenTrue) -> Self

Converts to this type from the input type.
source§

impl From<&TokenType> for SyntaxStablePtrId

source§

fn from(node: &TokenType) -> Self

Converts to this type from the input type.
source§

impl From<&TokenUnderscore> for SyntaxStablePtrId

source§

fn from(node: &TokenUnderscore) -> Self

Converts to this type from the input type.
source§

impl From<&TokenUse> for SyntaxStablePtrId

source§

fn from(node: &TokenUse) -> Self

Converts to this type from the input type.
source§

impl From<&TokenWhile> for SyntaxStablePtrId

source§

fn from(node: &TokenWhile) -> Self

Converts to this type from the input type.
source§

impl From<&TokenWhitespace> for SyntaxStablePtrId

source§

fn from(node: &TokenWhitespace) -> Self

Converts to this type from the input type.
source§

impl From<&TokenXor> for SyntaxStablePtrId

source§

fn from(node: &TokenXor) -> Self

Converts to this type from the input type.
source§

impl From<&TraitBody> for SyntaxStablePtrId

source§

fn from(node: &TraitBody) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItem> for SyntaxStablePtrId

source§

fn from(node: &TraitItem) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemConstant> for SyntaxStablePtrId

source§

fn from(node: &TraitItemConstant) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemFunction> for SyntaxStablePtrId

source§

fn from(node: &TraitItemFunction) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemImpl> for SyntaxStablePtrId

source§

fn from(node: &TraitItemImpl) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemList> for SyntaxStablePtrId

source§

fn from(node: &TraitItemList) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemMissing> for SyntaxStablePtrId

source§

fn from(node: &TraitItemMissing) -> Self

Converts to this type from the input type.
source§

impl From<&TraitItemType> for SyntaxStablePtrId

source§

fn from(node: &TraitItemType) -> Self

Converts to this type from the input type.
source§

impl From<&Trivia> for SyntaxStablePtrId

source§

fn from(node: &Trivia) -> Self

Converts to this type from the input type.
source§

impl From<&Trivium> for SyntaxStablePtrId

source§

fn from(node: &Trivium) -> Self

Converts to this type from the input type.
source§

impl From<&TriviumSkippedNode> for SyntaxStablePtrId

source§

fn from(node: &TriviumSkippedNode) -> Self

Converts to this type from the input type.
source§

impl From<&TypeClause> for SyntaxStablePtrId

source§

fn from(node: &TypeClause) -> Self

Converts to this type from the input type.
source§

impl From<&UnaryOperator> for SyntaxStablePtrId

source§

fn from(node: &UnaryOperator) -> Self

Converts to this type from the input type.
source§

impl From<&UsePath> for SyntaxStablePtrId

source§

fn from(node: &UsePath) -> Self

Converts to this type from the input type.
source§

impl From<&UsePathLeaf> for SyntaxStablePtrId

source§

fn from(node: &UsePathLeaf) -> Self

Converts to this type from the input type.
source§

impl From<&UsePathList> for SyntaxStablePtrId

source§

fn from(node: &UsePathList) -> Self

Converts to this type from the input type.
source§

impl From<&UsePathMulti> for SyntaxStablePtrId

source§

fn from(node: &UsePathMulti) -> Self

Converts to this type from the input type.
source§

impl From<&UsePathSingle> for SyntaxStablePtrId

source§

fn from(node: &UsePathSingle) -> Self

Converts to this type from the input type.
source§

impl From<&Variant> for SyntaxStablePtrId

source§

fn from(node: &Variant) -> Self

Converts to this type from the input type.
source§

impl From<&VariantList> for SyntaxStablePtrId

source§

fn from(node: &VariantList) -> Self

Converts to this type from the input type.
source§

impl From<&Visibility> for SyntaxStablePtrId

source§

fn from(node: &Visibility) -> Self

Converts to this type from the input type.
source§

impl From<&VisibilityDefault> for SyntaxStablePtrId

source§

fn from(node: &VisibilityDefault) -> Self

Converts to this type from the input type.
source§

impl From<&VisibilityPub> for SyntaxStablePtrId

source§

fn from(node: &VisibilityPub) -> Self

Converts to this type from the input type.
source§

impl From<&VisibilityPubArgumentClause> for SyntaxStablePtrId

source§

fn from(node: &VisibilityPubArgumentClause) -> Self

Converts to this type from the input type.
source§

impl From<&WrappedArgList> for SyntaxStablePtrId

source§

fn from(node: &WrappedArgList) -> Self

Converts to this type from the input type.
source§

impl From<&WrappedArgListMissing> for SyntaxStablePtrId

source§

fn from(node: &WrappedArgListMissing) -> Self

Converts to this type from the input type.
source§

impl From<&WrappedGenericParamList> for SyntaxStablePtrId

source§

fn from(node: &WrappedGenericParamList) -> Self

Converts to this type from the input type.
source§

impl From<AliasClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: AliasClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgClauseFieldInitShorthandPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgClauseFieldInitShorthandPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgClauseNamedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgClauseNamedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgClauseUnnamedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgClauseUnnamedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgListBracedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgListBracedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgListBracketedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgListBracketedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgListParenthesizedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgListParenthesizedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ArgPtr> for SyntaxStablePtrId

source§

fn from(ptr: ArgPtr) -> Self

Converts to this type from the input type.
source§

impl From<AttributeListPtr> for SyntaxStablePtrId

source§

fn from(ptr: AttributeListPtr) -> Self

Converts to this type from the input type.
source§

impl From<AttributePtr> for SyntaxStablePtrId

source§

fn from(ptr: AttributePtr) -> Self

Converts to this type from the input type.
source§

impl From<BinaryOperatorPtr> for SyntaxStablePtrId

source§

fn from(ptr: BinaryOperatorPtr) -> Self

Converts to this type from the input type.
source§

impl From<BlockOrIfPtr> for SyntaxStablePtrId

source§

fn from(ptr: BlockOrIfPtr) -> Self

Converts to this type from the input type.
source§

impl From<ClosureParamWrapperNAryPtr> for SyntaxStablePtrId

source§

fn from(ptr: ClosureParamWrapperNAryPtr) -> Self

Converts to this type from the input type.
source§

impl From<ClosureParamWrapperPtr> for SyntaxStablePtrId

source§

fn from(ptr: ClosureParamWrapperPtr) -> Self

Converts to this type from the input type.
source§

impl From<ConditionExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: ConditionExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<ConditionLetPtr> for SyntaxStablePtrId

source§

fn from(ptr: ConditionLetPtr) -> Self

Converts to this type from the input type.
source§

impl From<ConditionPtr> for SyntaxStablePtrId

source§

fn from(ptr: ConditionPtr) -> Self

Converts to this type from the input type.
source§

impl From<ElseClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: ElseClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprBinaryPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprBinaryPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprBlockPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprBlockPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprClosurePtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprClosurePtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprErrorPropagatePtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprErrorPropagatePtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprFieldInitShorthandPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprFieldInitShorthandPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprFixedSizeArrayPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprFixedSizeArrayPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprForPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprForPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprFunctionCallPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprFunctionCallPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprIfPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprIfPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprIndexedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprIndexedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprInlineMacroPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprInlineMacroPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprListParenthesizedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprListParenthesizedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprLoopPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprLoopPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprMatchPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprMatchPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprParenthesizedPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprParenthesizedPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprPathPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprPathPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprStructCtorCallPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprStructCtorCallPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprUnaryPtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprUnaryPtr) -> Self

Converts to this type from the input type.
source§

impl From<ExprWhilePtr> for SyntaxStablePtrId

source§

fn from(ptr: ExprWhilePtr) -> Self

Converts to this type from the input type.
source§

impl From<FixedSizeArraySizePtr> for SyntaxStablePtrId

source§

fn from(ptr: FixedSizeArraySizePtr) -> Self

Converts to this type from the input type.
source§

impl From<FunctionDeclarationPtr> for SyntaxStablePtrId

source§

fn from(ptr: FunctionDeclarationPtr) -> Self

Converts to this type from the input type.
source§

impl From<FunctionSignaturePtr> for SyntaxStablePtrId

source§

fn from(ptr: FunctionSignaturePtr) -> Self

Converts to this type from the input type.
source§

impl From<FunctionWithBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: FunctionWithBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgListPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgListPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgNamedPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgNamedPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgUnnamedPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgUnnamedPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgValueExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgValueExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgValuePtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgValuePtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericArgsPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericArgsPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamConstPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamConstPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamImplAnonymousPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamImplAnonymousPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamImplNamedPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamImplNamedPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamListPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamListPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamNegativeImplPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamNegativeImplPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamPtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamPtr) -> Self

Converts to this type from the input type.
source§

impl From<GenericParamTypePtr> for SyntaxStablePtrId

source§

fn from(ptr: GenericParamTypePtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplItemListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplItemListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplItemMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplItemMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplItemPtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplItemPtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplicitsClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplicitsClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<ImplicitsListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ImplicitsListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemConstantPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemConstantPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemEnumPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemEnumPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemExternFunctionPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemExternFunctionPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemExternTypePtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemExternTypePtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemHeaderDocPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemHeaderDocPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemImplAliasPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemImplAliasPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemImplPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemImplPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemInlineMacroPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemInlineMacroPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemModulePtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemModulePtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemStructPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemStructPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemTraitPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemTraitPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemTypeAliasPtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemTypeAliasPtr) -> Self

Converts to this type from the input type.
source§

impl From<ItemUsePtr> for SyntaxStablePtrId

source§

fn from(ptr: ItemUsePtr) -> Self

Converts to this type from the input type.
source§

impl From<MatchArmPtr> for SyntaxStablePtrId

source§

fn from(ptr: MatchArmPtr) -> Self

Converts to this type from the input type.
source§

impl From<MatchArmsPtr> for SyntaxStablePtrId

source§

fn from(ptr: MatchArmsPtr) -> Self

Converts to this type from the input type.
source§

impl From<MaybeImplBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: MaybeImplBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<MaybeModuleBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: MaybeModuleBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<MaybeTraitBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: MaybeTraitBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<MaybeTraitFunctionBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: MaybeTraitFunctionBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<MemberListPtr> for SyntaxStablePtrId

source§

fn from(ptr: MemberListPtr) -> Self

Converts to this type from the input type.
source§

impl From<MemberPtr> for SyntaxStablePtrId

source§

fn from(ptr: MemberPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModifierListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModifierListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModifierPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModifierPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModuleBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModuleBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModuleItemListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModuleItemListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModuleItemMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModuleItemMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<ModuleItemPtr> for SyntaxStablePtrId

source§

fn from(ptr: ModuleItemPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionAliasClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionAliasClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionAliasClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionAliasClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionArgListParenthesizedEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionArgListParenthesizedEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionArgListParenthesizedPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionArgListParenthesizedPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionElseClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionElseClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionElseClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionElseClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionExprClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionExprClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionExprClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionExprClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionFixedSizeArraySizeEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionFixedSizeArraySizeEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionFixedSizeArraySizePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionFixedSizeArraySizePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionImplicitsClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionImplicitsClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionImplicitsClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionImplicitsClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionPatternEnumInnerPatternEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionPatternEnumInnerPatternEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionPatternEnumInnerPatternPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionPatternEnumInnerPatternPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionReturnTypeClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionReturnTypeClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionReturnTypeClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionReturnTypeClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionStructArgExprEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionStructArgExprEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionStructArgExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionStructArgExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalColonColonEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalColonColonEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalColonColonPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalColonColonPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalNoPanicEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalNoPanicEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalNoPanicPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalNoPanicPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalSemicolonEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalSemicolonEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTerminalSemicolonPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTerminalSemicolonPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTypeClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTypeClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionTypeClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionTypeClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionVisibilityPubArgumentClauseEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionVisibilityPubArgumentClauseEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionVisibilityPubArgumentClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionVisibilityPubArgumentClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionWrappedGenericParamListEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionWrappedGenericParamListEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<OptionWrappedGenericParamListPtr> for SyntaxStablePtrId

source§

fn from(ptr: OptionWrappedGenericParamListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ParamListPtr> for SyntaxStablePtrId

source§

fn from(ptr: ParamListPtr) -> Self

Converts to this type from the input type.
source§

impl From<ParamPtr> for SyntaxStablePtrId

source§

fn from(ptr: ParamPtr) -> Self

Converts to this type from the input type.
source§

impl From<PathSegmentPtr> for SyntaxStablePtrId

source§

fn from(ptr: PathSegmentPtr) -> Self

Converts to this type from the input type.
source§

impl From<PathSegmentSimplePtr> for SyntaxStablePtrId

source§

fn from(ptr: PathSegmentSimplePtr) -> Self

Converts to this type from the input type.
source§

impl From<PathSegmentWithGenericArgsPtr> for SyntaxStablePtrId

source§

fn from(ptr: PathSegmentWithGenericArgsPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternEnumInnerPatternPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternEnumInnerPatternPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternEnumPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternEnumPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternFixedSizeArrayPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternFixedSizeArrayPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternIdentifierPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternIdentifierPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternListOrPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternListOrPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternListPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternListPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternStructParamListPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternStructParamListPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternStructParamPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternStructParamPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternStructParamWithExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternStructParamWithExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternStructPtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternStructPtr) -> Self

Converts to this type from the input type.
source§

impl From<PatternTuplePtr> for SyntaxStablePtrId

source§

fn from(ptr: PatternTuplePtr) -> Self

Converts to this type from the input type.
source§

impl From<ReturnTypeClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: ReturnTypeClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<SkippedNodePtr> for SyntaxStablePtrId

source§

fn from(ptr: SkippedNodePtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementBreakPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementBreakPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementContinuePtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementContinuePtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementItemPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementItemPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementLetPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementLetPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementListPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementListPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementPtr) -> Self

Converts to this type from the input type.
source§

impl From<StatementReturnPtr> for SyntaxStablePtrId

source§

fn from(ptr: StatementReturnPtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgExprPtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgExprPtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgListBracedPtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgListBracedPtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgListPtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgListPtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgPtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgPtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgSinglePtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgSinglePtr) -> Self

Converts to this type from the input type.
source§

impl From<StructArgTailPtr> for SyntaxStablePtrId

source§

fn from(ptr: StructArgTailPtr) -> Self

Converts to this type from the input type.
source§

impl From<SyntaxFilePtr> for SyntaxStablePtrId

source§

fn from(ptr: SyntaxFilePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalAndAndPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalAndAndPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalAndPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalAndPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalArrowPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalArrowPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalAsPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalAsPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalAtPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalAtPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalBadCharactersPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalBadCharactersPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalBitNotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalBitNotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalBreakPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalBreakPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalColonColonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalColonColonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalColonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalColonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalCommaPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalCommaPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalConstPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalConstPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalContinuePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalContinuePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalDivEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalDivEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalDivPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalDivPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalDotDotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalDotDotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalDotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalDotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalElsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalElsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalEndOfFilePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalEndOfFilePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalEnumPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalEnumPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalEqEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalEqEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalExternPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalExternPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalFalsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalFalsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalForPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalForPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalFunctionPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalFunctionPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalGEPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalGEPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalGTPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalGTPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalHashPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalHashPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalIdentifierPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalIdentifierPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalIfPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalIfPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalImplPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalImplPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalImplicitsPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalImplicitsPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLBracePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLBracePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLBrackPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLBrackPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLEPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLEPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLParenPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLParenPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLTPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLTPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLetPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLetPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLiteralNumberPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLiteralNumberPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalLoopPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalLoopPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMatchArrowPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMatchArrowPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMatchPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMatchPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMinusEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMinusEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMinusPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMinusPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalModEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalModEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalModPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalModPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalModulePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalModulePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMulEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMulEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMulPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMulPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalMutPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalMutPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalNeqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalNeqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalNoPanicPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalNoPanicPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalNotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalNotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalOfPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalOfPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalOrOrPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalOrOrPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalOrPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalOrPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalPlusEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalPlusEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalPlusPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalPlusPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalPubPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalPubPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalQuestionMarkPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalQuestionMarkPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalRBracePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalRBracePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalRBrackPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalRBrackPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalRParenPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalRParenPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalRefPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalRefPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalReturnPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalReturnPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalSemicolonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalSemicolonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalShortStringPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalShortStringPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalStringPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalStringPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalStructPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalStructPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalTraitPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalTraitPtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalTruePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalTruePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalTypePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalTypePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalUnderscorePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalUnderscorePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalUsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalUsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalWhilePtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalWhilePtr) -> Self

Converts to this type from the input type.
source§

impl From<TerminalXorPtr> for SyntaxStablePtrId

source§

fn from(ptr: TerminalXorPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenAndAndPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenAndAndPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenAndPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenAndPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenArrowPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenArrowPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenAsPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenAsPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenAtPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenAtPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenBadCharactersPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenBadCharactersPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenBitNotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenBitNotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenBreakPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenBreakPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenColonColonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenColonColonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenColonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenColonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenCommaPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenCommaPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenConstPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenConstPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenContinuePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenContinuePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenDivEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenDivEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenDivPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenDivPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenDotDotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenDotDotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenDotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenDotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenElsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenElsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenEmptyPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenEmptyPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenEndOfFilePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenEndOfFilePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenEnumPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenEnumPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenEqEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenEqEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenExternPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenExternPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenFalsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenFalsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenForPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenForPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenFunctionPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenFunctionPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenGEPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenGEPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenGTPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenGTPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenHashPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenHashPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenIdentifierPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenIdentifierPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenIfPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenIfPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenImplPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenImplPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenImplicitsPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenImplicitsPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLBracePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLBracePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLBrackPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLBrackPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLEPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLEPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLParenPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLParenPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLTPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLTPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLetPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLetPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLiteralNumberPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLiteralNumberPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenLoopPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenLoopPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMatchArrowPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMatchArrowPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMatchPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMatchPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMinusEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMinusEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMinusPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMinusPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenModEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenModEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenModPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenModPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenModulePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenModulePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMulEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMulEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMulPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMulPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenMutPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenMutPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenNeqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenNeqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenNewlinePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenNewlinePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenNoPanicPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenNoPanicPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenNodePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenNodePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenNotPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenNotPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenOfPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenOfPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenOrOrPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenOrOrPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenOrPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenOrPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenPlusEqPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenPlusEqPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenPlusPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenPlusPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenPubPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenPubPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenQuestionMarkPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenQuestionMarkPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenRBracePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenRBracePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenRBrackPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenRBrackPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenRParenPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenRParenPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenRefPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenRefPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenReturnPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenReturnPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenSemicolonPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenSemicolonPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenShortStringPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenShortStringPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenSingleLineCommentPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenSingleLineCommentPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenSingleLineDocCommentPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenSingleLineDocCommentPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenSingleLineInnerCommentPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenSingleLineInnerCommentPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenSkippedPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenSkippedPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenStringPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenStringPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenStructPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenStructPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenTraitPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenTraitPtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenTruePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenTruePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenTypePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenTypePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenUnderscorePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenUnderscorePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenUsePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenUsePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenWhilePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenWhilePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenWhitespacePtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenWhitespacePtr) -> Self

Converts to this type from the input type.
source§

impl From<TokenXorPtr> for SyntaxStablePtrId

source§

fn from(ptr: TokenXorPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitBodyPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitBodyPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemConstantPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemConstantPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemFunctionPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemFunctionPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemImplPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemImplPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemListPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemListPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemPtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemPtr) -> Self

Converts to this type from the input type.
source§

impl From<TraitItemTypePtr> for SyntaxStablePtrId

source§

fn from(ptr: TraitItemTypePtr) -> Self

Converts to this type from the input type.
source§

impl From<TriviaPtr> for SyntaxStablePtrId

source§

fn from(ptr: TriviaPtr) -> Self

Converts to this type from the input type.
source§

impl From<TriviumPtr> for SyntaxStablePtrId

source§

fn from(ptr: TriviumPtr) -> Self

Converts to this type from the input type.
source§

impl From<TriviumSkippedNodePtr> for SyntaxStablePtrId

source§

fn from(ptr: TriviumSkippedNodePtr) -> Self

Converts to this type from the input type.
source§

impl From<TypeClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: TypeClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<UnaryOperatorPtr> for SyntaxStablePtrId

source§

fn from(ptr: UnaryOperatorPtr) -> Self

Converts to this type from the input type.
source§

impl From<UsePathLeafPtr> for SyntaxStablePtrId

source§

fn from(ptr: UsePathLeafPtr) -> Self

Converts to this type from the input type.
source§

impl From<UsePathListPtr> for SyntaxStablePtrId

source§

fn from(ptr: UsePathListPtr) -> Self

Converts to this type from the input type.
source§

impl From<UsePathMultiPtr> for SyntaxStablePtrId

source§

fn from(ptr: UsePathMultiPtr) -> Self

Converts to this type from the input type.
source§

impl From<UsePathPtr> for SyntaxStablePtrId

source§

fn from(ptr: UsePathPtr) -> Self

Converts to this type from the input type.
source§

impl From<UsePathSinglePtr> for SyntaxStablePtrId

source§

fn from(ptr: UsePathSinglePtr) -> Self

Converts to this type from the input type.
source§

impl From<VariantListPtr> for SyntaxStablePtrId

source§

fn from(ptr: VariantListPtr) -> Self

Converts to this type from the input type.
source§

impl From<VariantPtr> for SyntaxStablePtrId

source§

fn from(ptr: VariantPtr) -> Self

Converts to this type from the input type.
source§

impl From<VisibilityDefaultPtr> for SyntaxStablePtrId

source§

fn from(ptr: VisibilityDefaultPtr) -> Self

Converts to this type from the input type.
source§

impl From<VisibilityPtr> for SyntaxStablePtrId

source§

fn from(ptr: VisibilityPtr) -> Self

Converts to this type from the input type.
source§

impl From<VisibilityPubArgumentClausePtr> for SyntaxStablePtrId

source§

fn from(ptr: VisibilityPubArgumentClausePtr) -> Self

Converts to this type from the input type.
source§

impl From<VisibilityPubPtr> for SyntaxStablePtrId

source§

fn from(ptr: VisibilityPubPtr) -> Self

Converts to this type from the input type.
source§

impl From<WrappedArgListMissingPtr> for SyntaxStablePtrId

source§

fn from(ptr: WrappedArgListMissingPtr) -> Self

Converts to this type from the input type.
source§

impl From<WrappedArgListPtr> for SyntaxStablePtrId

source§

fn from(ptr: WrappedArgListPtr) -> Self

Converts to this type from the input type.
source§

impl From<WrappedGenericParamListPtr> for SyntaxStablePtrId

source§

fn from(ptr: WrappedGenericParamListPtr) -> Self

Converts to this type from the input type.
source§

impl Hash for SyntaxStablePtrId

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a> Intern<'a, dyn SyntaxGroup + 'a, SyntaxStablePtrId> for SyntaxStablePtr

source§

fn intern( self, db: &(impl Upcast<dyn SyntaxGroup + 'a> + ?Sized), ) -> SyntaxStablePtrId

source§

impl InternKey for SyntaxStablePtrId

source§

fn from_intern_id(salsa_id: InternId) -> Self

Create an instance of the intern-key from a u32 value.
source§

fn as_intern_id(&self) -> InternId

Extract the u32 with which the intern-key was created.
source§

impl<'a> LookupIntern<'a, dyn SyntaxGroup + 'a, SyntaxStablePtr> for SyntaxStablePtrId

source§

fn lookup_intern( &self, db: &(impl Upcast<dyn SyntaxGroup + 'a> + ?Sized), ) -> SyntaxStablePtr

source§

impl PartialEq for SyntaxStablePtrId

source§

fn eq(&self, other: &SyntaxStablePtrId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for SyntaxStablePtrId

source§

impl Eq for SyntaxStablePtrId

source§

impl StructuralPartialEq for SyntaxStablePtrId

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T
where T: ?Sized,

source§

fn upcast(&self) -> &T

source§

impl<T> UpcastMut<T> for T
where T: ?Sized,

source§

fn upcast_mut(&mut self) -> &mut T

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more