pub struct TermAnnotation {
pub sig: TermSignature,
pub assumptions: Vec<Box<Expr>>,
pub assertions: Vec<Box<Expr>>,
}
Expand description
Verification IR annotations for an ISLE term consist of the function signature and a list of assertions.
Fields§
§sig: TermSignature
§assumptions: Vec<Box<Expr>>
§assertions: Vec<Box<Expr>>
Implementations§
Source§impl TermAnnotation
impl TermAnnotation
Sourcepub fn new(
sig: TermSignature,
assumptions: Vec<Expr>,
assertions: Vec<Expr>,
) -> Self
pub fn new( sig: TermSignature, assumptions: Vec<Expr>, assertions: Vec<Expr>, ) -> Self
New annotation
pub fn sig(&self) -> &TermSignature
pub fn assertions(&self) -> Vec<Expr>
Trait Implementations§
Source§impl Clone for TermAnnotation
impl Clone for TermAnnotation
Source§fn clone(&self) -> TermAnnotation
fn clone(&self) -> TermAnnotation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TermAnnotation
impl Debug for TermAnnotation
Source§impl PartialEq for TermAnnotation
impl PartialEq for TermAnnotation
impl Eq for TermAnnotation
impl StructuralPartialEq for TermAnnotation
Auto Trait Implementations§
impl Freeze for TermAnnotation
impl RefUnwindSafe for TermAnnotation
impl Send for TermAnnotation
impl Sync for TermAnnotation
impl Unpin for TermAnnotation
impl UnwindSafe for TermAnnotation
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