pub struct KaniConfig {
pub executable: String,
pub args: Vec<String>,
}Expand description
Command-line configuration for Kani bounded model checking.
Fields§
§executable: String§args: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for KaniConfig
impl Clone for KaniConfig
Source§fn clone(&self) -> KaniConfig
fn clone(&self) -> KaniConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KaniConfig
impl Debug for KaniConfig
Source§impl Default for KaniConfig
impl Default for KaniConfig
impl Eq for KaniConfig
Source§impl PartialEq for KaniConfig
impl PartialEq for KaniConfig
Source§fn eq(&self, other: &KaniConfig) -> bool
fn eq(&self, other: &KaniConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KaniConfig
Auto Trait Implementations§
impl Freeze for KaniConfig
impl RefUnwindSafe for KaniConfig
impl Send for KaniConfig
impl Sync for KaniConfig
impl Unpin for KaniConfig
impl UnsafeUnpin for KaniConfig
impl UnwindSafe for KaniConfig
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