pub enum VerificationStrategy {
None,
Post,
Pre,
PreQuick,
}Expand description
Verification strategy
Variants§
None
No verification
Post
Verify after write (current behavior)
Pre
Verify before write, block if errors
PreQuick
Quick syntax check before, full check after
Implementations§
Trait Implementations§
Source§impl Clone for VerificationStrategy
impl Clone for VerificationStrategy
Source§fn clone(&self) -> VerificationStrategy
fn clone(&self) -> VerificationStrategy
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 moreimpl Copy for VerificationStrategy
Source§impl Debug for VerificationStrategy
impl Debug for VerificationStrategy
Source§impl Default for VerificationStrategy
impl Default for VerificationStrategy
Source§fn default() -> VerificationStrategy
fn default() -> VerificationStrategy
Returns the “default value” for a type. Read more
impl Eq for VerificationStrategy
Source§impl PartialEq for VerificationStrategy
impl PartialEq for VerificationStrategy
Source§fn eq(&self, other: &VerificationStrategy) -> bool
fn eq(&self, other: &VerificationStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VerificationStrategy
Auto Trait Implementations§
impl Freeze for VerificationStrategy
impl RefUnwindSafe for VerificationStrategy
impl Send for VerificationStrategy
impl Sync for VerificationStrategy
impl Unpin for VerificationStrategy
impl UnsafeUnpin for VerificationStrategy
impl UnwindSafe for VerificationStrategy
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.