struct Renderer {
lbl: Lifetime,
rule: Rule,
metavars: HashMap<String, Vec<usize>>,
}
Fields§
§lbl: Lifetime
§rule: Rule
§metavars: HashMap<String, Vec<usize>>
The set of metavars and the index of the inputs they match
Implementations§
Source§impl Renderer
impl Renderer
fn new(i: usize, rule: Rule) -> Self
fn render(&self) -> Result<TokenStream>
fn bty_arg_or_prim(&self, ident: &Ident) -> Result<TokenStream>
fn output_type(&self) -> Result<TokenStream>
Sourcefn metavar_matching(&self) -> TokenStream
fn metavar_matching(&self) -> TokenStream
Generates the code that checks that all the inputs matching the same metavariable are equal
Sourcefn check_primitive_types(&self) -> TokenStream
fn check_primitive_types(&self) -> TokenStream
Generates the code that checks if an arg matching a primitive type has indeed that type
fn precondition(&self) -> TokenStream
Sourcefn declare_metavars(&self) -> TokenStream
fn declare_metavars(&self) -> TokenStream
Declare metavars as variables so they can be accessed in the guards
fn declare_idxs_names(&self) -> TokenStream
fn guards(&self) -> TokenStream
fn guard(&self, guard: &Guard) -> TokenStream
Auto Trait Implementations§
impl Freeze for Renderer
impl RefUnwindSafe for Renderer
impl !Send for Renderer
impl !Sync for Renderer
impl Unpin for Renderer
impl UnwindSafe for Renderer
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
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