Enum move_model::model::VerificationScope
source · [−]Expand description
Verification Scope
Defines what functions to verify.
Variants
Public
Verify only public functions.
All
Verify all functions.
Only(String)
Verify only one function.
OnlyModule(String)
Verify only functions from the given module.
None
Verify no functions
Implementations
sourceimpl VerificationScope
impl VerificationScope
sourcepub fn is_exclusive(&self) -> bool
pub fn is_exclusive(&self) -> bool
Whether verification is exclusive to only one function or module. If set, this overrides all implicitly included verification targets via invariants and friends.
sourcepub fn get_exclusive_verify_function_name(&self) -> Option<&String>
pub fn get_exclusive_verify_function_name(&self) -> Option<&String>
Returns the target function if verification is exclusive to one function.
Trait Implementations
sourceimpl Clone for VerificationScope
impl Clone for VerificationScope
sourcefn clone(&self) -> VerificationScope
fn clone(&self) -> VerificationScope
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for VerificationScope
impl Debug for VerificationScope
sourceimpl Default for VerificationScope
impl Default for VerificationScope
sourceimpl<'de> Deserialize<'de> for VerificationScope
impl<'de> Deserialize<'de> for VerificationScope
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<VerificationScope> for VerificationScope
impl PartialEq<VerificationScope> for VerificationScope
sourcefn eq(&self, other: &VerificationScope) -> bool
fn eq(&self, other: &VerificationScope) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &VerificationScope) -> bool
fn ne(&self, other: &VerificationScope) -> bool
This method tests for !=
.
sourceimpl Serialize for VerificationScope
impl Serialize for VerificationScope
impl StructuralPartialEq for VerificationScope
Auto Trait Implementations
impl RefUnwindSafe for VerificationScope
impl Send for VerificationScope
impl Sync for VerificationScope
impl Unpin for VerificationScope
impl UnwindSafe for VerificationScope
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more