Struct mz_expr::visit::StackSafeVisit

source ·
struct StackSafeVisit<T> {
    recursion_guard: RecursionGuard,
    _type: PhantomData<T>,
}

Fields§

§recursion_guard: RecursionGuard§_type: PhantomData<T>

Implementations§

source§

impl<T: VisitChildren<T>> StackSafeVisit<T>

source

fn new() -> Self

source

fn visit_post<F>(&self, value: &T, f: &mut F) -> Result<(), RecursionLimitError>
where F: FnMut(&T),

source

fn visit_post_nolimit<F>(&self, value: &T, f: &mut F)
where F: FnMut(&T),

source

fn visit_mut_post<F>( &self, value: &mut T, f: &mut F, ) -> Result<(), RecursionLimitError>
where F: FnMut(&mut T),

source

fn visit_mut_post_nolimit<F>(&self, value: &mut T, f: &mut F)
where F: FnMut(&mut T),

source

fn try_visit_post<F, E>(&self, value: &T, f: &mut F) -> Result<(), E>
where F: FnMut(&T) -> Result<(), E>, E: From<RecursionLimitError>,

source

fn try_visit_mut_post<F, E>(&self, value: &mut T, f: &mut F) -> Result<(), E>
where F: FnMut(&mut T) -> Result<(), E>, E: From<RecursionLimitError>,

source

fn visit_pre<F>(&self, value: &T, f: &mut F) -> Result<(), RecursionLimitError>
where F: FnMut(&T),

source

fn visit_pre_with_context<Context, AccFun, Visitor>( &self, node: &T, init: Context, acc_fun: &mut AccFun, visitor: &mut Visitor, ) -> Result<(), RecursionLimitError>
where Context: Clone, AccFun: FnMut(Context, &T) -> Context, Visitor: FnMut(&Context, &T),

source

fn visit_pre_nolimit<F>(&self, value: &T, f: &mut F)
where F: FnMut(&T),

source

fn visit_mut_pre<F>( &self, value: &mut T, f: &mut F, ) -> Result<(), RecursionLimitError>
where F: FnMut(&mut T),

source

fn visit_mut_pre_nolimit<F>(&self, value: &mut T, f: &mut F)
where F: FnMut(&mut T),

source

fn try_visit_pre<F, E>(&self, value: &T, f: &mut F) -> Result<(), E>
where F: FnMut(&T) -> Result<(), E>, E: From<RecursionLimitError>,

source

fn try_visit_mut_pre<F, E>(&self, value: &mut T, f: &mut F) -> Result<(), E>
where F: FnMut(&mut T) -> Result<(), E>, E: From<RecursionLimitError>,

source

fn visit_pre_post<F1, F2>( &self, value: &T, pre: &mut F1, post: &mut F2, ) -> Result<(), RecursionLimitError>
where F1: FnMut(&T) -> Option<Vec<&T>>, F2: FnMut(&T),

source

fn visit_pre_post_nolimit<F1, F2>(&self, value: &T, pre: &mut F1, post: &mut F2)
where F1: FnMut(&T) -> Option<Vec<&T>>, F2: FnMut(&T),

source

fn visit_mut_pre_post<F1, F2>( &self, value: &mut T, pre: &mut F1, post: &mut F2, ) -> Result<(), RecursionLimitError>
where F1: FnMut(&mut T) -> Option<Vec<&mut T>>, F2: FnMut(&mut T),

source

fn visit_mut_pre_post_nolimit<F1, F2>( &self, value: &mut T, pre: &mut F1, post: &mut F2, )
where F1: FnMut(&mut T) -> Option<Vec<&mut T>>, F2: FnMut(&mut T),

source

fn visit<V>( &self, value: &T, visitor: &mut V, ) -> Result<(), RecursionLimitError>
where Self: Sized, V: Visitor<T>,

source

fn visit_mut<V>( &self, value: &mut T, visitor: &mut V, ) -> Result<(), RecursionLimitError>
where Self: Sized, V: VisitorMut<T>,

source

fn try_visit<V, E>(&self, value: &T, visitor: &mut V) -> Result<(), E>
where Self: Sized, V: TryVisitor<T, E>, E: From<RecursionLimitError>,

source

fn try_visit_mut<V, E>(&self, value: &mut T, visitor: &mut V) -> Result<(), E>
where Self: Sized, V: TryVisitorMut<T, E>, E: From<RecursionLimitError>,

Trait Implementations§

source§

impl<T> CheckedRecursion for StackSafeVisit<T>

source§

fn recursion_guard(&self) -> &RecursionGuard

Extracts a reference to the recursion guard embedded within the type.
source§

fn checked_recur<F, T, E>(&self, f: F) -> Result<T, E>
where F: FnOnce(&Self) -> Result<T, E>, E: From<RecursionLimitError>,

Checks whether it is safe to recur and calls f if so. Read more
source§

fn checked_recur_mut<F, T, E>(&mut self, f: F) -> Result<T, E>
where F: FnOnce(&mut Self) -> Result<T, E>, E: From<RecursionLimitError>,

Like CheckedRecursion::checked_recur, but operates on a mutable reference to Self.

Auto Trait Implementations§

§

impl<T> !Freeze for StackSafeVisit<T>

§

impl<T> !RefUnwindSafe for StackSafeVisit<T>

§

impl<T> Send for StackSafeVisit<T>
where T: Send,

§

impl<T> !Sync for StackSafeVisit<T>

§

impl<T> Unpin for StackSafeVisit<T>
where T: Unpin,

§

impl<T> UnwindSafe for StackSafeVisit<T>
where T: UnwindSafe,

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, U> CastInto<U> for T
where U: CastFrom<T>,

source§

fn cast_into(self) -> U

Performs the cast.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T, U> OverrideFrom<Option<&T>> for U
where U: OverrideFrom<T>,

source§

fn override_from(self, layer: &Option<&T>) -> U

Override the configuration represented by Self with values from the given layer.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<P, R> ProtoType<R> for P
where R: RustType<P>,

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
source§

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

§

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>,

§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

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