pub struct LibraryResult {
pub name: String,
pub verified: bool,
pub verification_error: Option<String>,
}Expand description
The outcome of proving one theorem in a library.
Fields§
§name: String§verified: bool§verification_error: Option<String>Auto Trait Implementations§
impl Freeze for LibraryResult
impl RefUnwindSafe for LibraryResult
impl Send for LibraryResult
impl Sync for LibraryResult
impl Unpin for LibraryResult
impl UnsafeUnpin for LibraryResult
impl UnwindSafe for LibraryResult
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