pub struct StoredAstVisitor<'a, R, F> {
pub source: Option<SourceCallback<'a>>,
pub merge: Option<MergeCallback<'a>>,
pub expression: Option<ExpressionCallback<'a>>,
pub ty: Option<&'a mut dyn FnMut(&mut String)>,
pub relation: &'a mut R,
pub routine: &'a mut F,
}Fields§
§source: Option<SourceCallback<'a>>§merge: Option<MergeCallback<'a>>§expression: Option<ExpressionCallback<'a>>§ty: Option<&'a mut dyn FnMut(&mut String)>§relation: &'a mut R§routine: &'a mut FImplementations§
Source§impl<R, F> StoredAstVisitor<'_, R, F>
impl<R, F> StoredAstVisitor<'_, R, F>
Auto Trait Implementations§
impl<'a, R, F> !RefUnwindSafe for StoredAstVisitor<'a, R, F>
impl<'a, R, F> !Send for StoredAstVisitor<'a, R, F>
impl<'a, R, F> !Sync for StoredAstVisitor<'a, R, F>
impl<'a, R, F> !UnwindSafe for StoredAstVisitor<'a, R, F>
impl<'a, R, F> Freeze for StoredAstVisitor<'a, R, F>
impl<'a, R, F> Unpin for StoredAstVisitor<'a, R, F>
impl<'a, R, F> UnsafeUnpin for StoredAstVisitor<'a, R, F>
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<T> ErasedDestructor for Twhere
T: 'static,
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