pub struct Parser;Expand description
Empty parser structure, we will not maintain any context.
Trait Implementations§
impl Copy for Parser
Auto Trait Implementations§
impl Freeze for Parser
impl RefUnwindSafe for Parser
impl Send for Parser
impl Sync for Parser
impl Unpin for Parser
impl UnwindSafe for Parser
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, Ident, Type, T, Br> IdentParser<Ident, Type, &'a mut SmtParser<Br>> for T
impl<'a, Ident, Type, T, Br> IdentParser<Ident, Type, &'a mut SmtParser<Br>> for T
Source§impl<'a, Ident, Type, Value, T, Br> ModelParser<Ident, Type, Value, &'a mut SmtParser<Br>> for T
impl<'a, Ident, Type, Value, T, Br> ModelParser<Ident, Type, Value, &'a mut SmtParser<Br>> for T
Source§fn parse_value(
self,
input: &'a mut SmtParser<Br>,
name: &Ident,
inputs: &[(Ident, Type)],
output: &Type,
) -> Result<Value, Error>
fn parse_value( self, input: &'a mut SmtParser<Br>, name: &Ident, inputs: &[(Ident, Type)], output: &Type, ) -> Result<Value, Error>
Parses a value in the context of a
get-model command. Read more