pub enum VecResolve<'r> {
Arg(&'r GenericDataTypes),
Proc(&'r Vec<DynProcedure>),
List(&'r Vec<DynProcedure>),
}
Expand description
A final node in the path which is retrieved by the resolve.
Variants§
Arg(&'r GenericDataTypes)
The final node is Argument
Proc(&'r Vec<DynProcedure>)
The final is procedure
List(&'r Vec<DynProcedure>)
The final is list
Auto Trait Implementations§
impl<'r> Freeze for VecResolve<'r>
impl<'r> RefUnwindSafe for VecResolve<'r>
impl<'r> Send for VecResolve<'r>
impl<'r> Sync for VecResolve<'r>
impl<'r> Unpin for VecResolve<'r>
impl<'r> UnwindSafe for VecResolve<'r>
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