pub(super) struct Context<'cx, 'a> {
best_case_captures: Vec<Stmt>,
capture_decls: Vec<Capture>,
cx: &'cx ExtCtxt<'a>,
fmt_string: String,
is_consumed: bool,
local_bind_decls: Vec<Stmt>,
paths: FxHashSet<Ident>,
span: Span,
}
Fields§
§best_case_captures: Vec<Stmt>
§capture_decls: Vec<Capture>
§cx: &'cx ExtCtxt<'a>
§fmt_string: String
§is_consumed: bool
§local_bind_decls: Vec<Stmt>
§paths: FxHashSet<Ident>
§span: Span
Implementations§
Source§impl<'cx, 'a> Context<'cx, 'a>
impl<'cx, 'a> Context<'cx, 'a>
pub(super) fn new(cx: &'cx ExtCtxt<'a>, span: Span) -> Self
Sourcepub(super) fn build(self, cond_expr: P<Expr>, panic_path: Path) -> P<Expr>
pub(super) fn build(self, cond_expr: P<Expr>, panic_path: Path) -> P<Expr>
Builds the whole assert!
expression. For example, let elem = 1; assert!(elem == 1);
expands to:
let elem = 1;
{
#[allow(unused_imports)]
use ::core::asserting::{TryCaptureGeneric, TryCapturePrintable};
let mut __capture0 = ::core::asserting::Capture::new();
let __local_bind0 = &elem;
if !(
*{
(&::core::asserting::Wrapper(__local_bind0)).try_capture(&mut __capture0);
__local_bind0
} == 1
) {
panic!("Assertion failed: elem == 1\nWith captures:\n elem = {:?}", __capture0)
}
}
Sourcefn build_initial_imports(&self) -> Stmt
fn build_initial_imports(&self) -> Stmt
Initial trait imports
use ::core::asserting::{ … };
Sourcefn build_unlikely(&self, cond_expr: P<Expr>) -> P<Expr>
fn build_unlikely(&self, cond_expr: P<Expr>) -> P<Expr>
Takes the conditional expression of assert!
and then wraps it inside unlikely
Sourcefn build_panic(&self, expr_str: &str, panic_path: Path) -> P<Expr>
fn build_panic(&self, expr_str: &str, panic_path: Path) -> P<Expr>
The necessary custom panic!(...)
expression.
panic!( “Assertion failed: … \n With expansion: …”, __capture0, … );
Sourcefn manage_cond_expr(&mut self, expr: &mut P<Expr>)
fn manage_cond_expr(&mut self, expr: &mut P<Expr>)
Recursive function called until cond_expr
and fmt_str
are fully modified.
See Self::manage_initial_capture and Self::manage_try_capture
Sourcefn manage_initial_capture(&mut self, expr: &mut P<Expr>, path_ident: Ident)
fn manage_initial_capture(&mut self, expr: &mut P<Expr>, path_ident: Ident)
Pushes the top-level declarations and modifies expr
to try capturing variables.
fmt_str
, the formatting string used for debugging, is constructed to show possible
captured variables.
Sourcefn manage_try_capture(
&mut self,
capture: Ident,
curr_capture_idx: usize,
expr: &mut P<Expr>,
)
fn manage_try_capture( &mut self, capture: Ident, curr_capture_idx: usize, expr: &mut P<Expr>, )
Tries to copy __local_bindN
into __captureN
.
*{ (&Wrapper(__local_bindN)).try_capture(&mut __captureN); __local_bindN }
fn with_is_consumed_management( &mut self, curr_is_consumed: bool, f: impl FnOnce(&mut Self), )
Auto Trait Implementations§
impl<'cx, 'a> !DynSend for Context<'cx, 'a>
impl<'cx, 'a> !DynSync for Context<'cx, 'a>
impl<'cx, 'a> Freeze for Context<'cx, 'a>
impl<'cx, 'a> !RefUnwindSafe for Context<'cx, 'a>
impl<'cx, 'a> !Send for Context<'cx, 'a>
impl<'cx, 'a> !Sync for Context<'cx, 'a>
impl<'cx, 'a> Unpin for Context<'cx, 'a>
impl<'cx, 'a> !UnwindSafe for Context<'cx, 'a>
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
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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>
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>
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 152 bytes