pub enum AnyTransItemMut<'ctx> {
Type(&'ctx mut TypeDecl),
Fun(&'ctx mut FunDecl),
Global(&'ctx mut GlobalDecl),
TraitDecl(&'ctx mut TraitDecl),
TraitImpl(&'ctx mut TraitImpl),
}
Expand description
A mutable reference to a translated item.
Variants§
Type(&'ctx mut TypeDecl)
Fun(&'ctx mut FunDecl)
Global(&'ctx mut GlobalDecl)
TraitDecl(&'ctx mut TraitDecl)
TraitImpl(&'ctx mut TraitImpl)
Implementations§
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
pub fn as_type(&self) -> Option<&&'ctx mut TypeDecl>
pub fn as_fun(&self) -> Option<&&'ctx mut FunDecl>
pub fn as_global(&self) -> Option<&&'ctx mut GlobalDecl>
pub fn as_trait_decl(&self) -> Option<&&'ctx mut TraitDecl>
pub fn as_trait_impl(&self) -> Option<&&'ctx mut TraitImpl>
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
pub fn as_type_mut(&mut self) -> Option<&mut &'ctx mut TypeDecl>
pub fn as_fun_mut(&mut self) -> Option<&mut &'ctx mut FunDecl>
pub fn as_global_mut(&mut self) -> Option<&mut &'ctx mut GlobalDecl>
pub fn as_trait_decl_mut(&mut self) -> Option<&mut &'ctx mut TraitDecl>
pub fn as_trait_impl_mut(&mut self) -> Option<&mut &'ctx mut TraitImpl>
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
pub fn variant_name(&self) -> &'static str
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
pub fn variant_index_arity(&self) -> (u32, usize)
source§impl<'ctx> AnyTransItemMut<'ctx>
impl<'ctx> AnyTransItemMut<'ctx>
pub fn as_ref(&self) -> AnyTransItem<'_>
sourcepub fn generic_params(&mut self) -> &mut GenericParams
pub fn generic_params(&mut self) -> &mut GenericParams
The generic parameters of this item.
sourcepub fn drive_mut<V: VisitAstMut>(
&mut self,
visitor: &mut V,
) -> ControlFlow<V::Break>
pub fn drive_mut<V: VisitAstMut>( &mut self, visitor: &mut V, ) -> ControlFlow<V::Break>
We can’t implement AstVisitable
because of the 'static
constraint, but it’s ok because
AnyTransItemMut
isn’t contained in any of our types.
Trait Implementations§
source§impl<'ctx> Debug for AnyTransItemMut<'ctx>
impl<'ctx> Debug for AnyTransItemMut<'ctx>
source§impl<'ctx, 's, V> Drive<'s, V> for AnyTransItemMut<'ctx>where
V: Visitor + Visit<'s, &'ctx mut TypeDecl> + Visit<'s, &'ctx mut FunDecl> + Visit<'s, &'ctx mut GlobalDecl> + Visit<'s, &'ctx mut TraitDecl> + Visit<'s, &'ctx mut TraitImpl>,
impl<'ctx, 's, V> Drive<'s, V> for AnyTransItemMut<'ctx>where
V: Visitor + Visit<'s, &'ctx mut TypeDecl> + Visit<'s, &'ctx mut FunDecl> + Visit<'s, &'ctx mut GlobalDecl> + Visit<'s, &'ctx mut TraitDecl> + Visit<'s, &'ctx mut TraitImpl>,
source§fn drive_inner(&'s self, visitor: &mut V) -> ControlFlow<V::Break>
fn drive_inner(&'s self, visitor: &mut V) -> ControlFlow<V::Break>
Call
v.visit()
on the immediate contents of self
.source§impl<'ctx, 's, V> DriveMut<'s, V> for AnyTransItemMut<'ctx>where
V: Visitor + VisitMut<'s, &'ctx mut TypeDecl> + VisitMut<'s, &'ctx mut FunDecl> + VisitMut<'s, &'ctx mut GlobalDecl> + VisitMut<'s, &'ctx mut TraitDecl> + VisitMut<'s, &'ctx mut TraitImpl>,
impl<'ctx, 's, V> DriveMut<'s, V> for AnyTransItemMut<'ctx>where
V: Visitor + VisitMut<'s, &'ctx mut TypeDecl> + VisitMut<'s, &'ctx mut FunDecl> + VisitMut<'s, &'ctx mut GlobalDecl> + VisitMut<'s, &'ctx mut TraitDecl> + VisitMut<'s, &'ctx mut TraitImpl>,
source§fn drive_inner_mut(&'s mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn drive_inner_mut(&'s mut self, visitor: &mut V) -> ControlFlow<V::Break>
Call
v.visit()
on the immediate contents of self
.Auto Trait Implementations§
impl<'ctx> Freeze for AnyTransItemMut<'ctx>
impl<'ctx> RefUnwindSafe for AnyTransItemMut<'ctx>
impl<'ctx> Send for AnyTransItemMut<'ctx>
impl<'ctx> Sync for AnyTransItemMut<'ctx>
impl<'ctx> Unpin for AnyTransItemMut<'ctx>
impl<'ctx> !UnwindSafe for AnyTransItemMut<'ctx>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more