Config

Enum Config 

Source
pub enum Config<K, V, Pred: InvariantPredicate<K, V>> {
    initialize_full(K, V),
    dummy_to_use_type_params(State<K, V, Pred>),
}

Variants§

§

initialize_full(K, V)

§

dummy_to_use_type_params(State<K, V, Pred>)

Implementations§

Source§

impl<K, V, Pred: InvariantPredicate<K, V>> Config<K, V, Pred>

Source

pub fn arrow_1(self) -> V

Source

pub fn arrow_initialize_full_0(self) -> K

Source

pub fn arrow_initialize_full_1(self) -> V

Source

pub fn arrow_dummy_to_use_type_params_0(self) -> State<K, V, Pred>

Source§

impl<K, V, Pred: InvariantPredicate<K, V>> Config<K, V, Pred>

Source

pub exec fn is_initialize_full(&self) -> bool

Source

pub exec fn get_initialize_full_0(self) -> K

Source

pub exec fn get_initialize_full_1(self) -> V

Source

pub exec fn is_dummy_to_use_type_params(&self) -> bool

Source

pub exec fn get_dummy_to_use_type_params_0(self) -> State<K, V, Pred>

Auto Trait Implementations§

§

impl<K, V, Pred> Freeze for Config<K, V, Pred>
where K: Freeze, V: Freeze,

§

impl<K, V, Pred> RefUnwindSafe for Config<K, V, Pred>

§

impl<K, V, Pred> Send for Config<K, V, Pred>
where K: Send, V: Send, Pred: Send,

§

impl<K, V, Pred> Sync for Config<K, V, Pred>
where K: Sync, V: Sync, Pred: Sync,

§

impl<K, V, Pred> Unpin for Config<K, V, Pred>
where K: Unpin, V: Unpin, Pred: Unpin,

§

impl<K, V, Pred> UnwindSafe for Config<K, V, Pred>
where K: UnwindSafe, V: UnwindSafe, Pred: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, VERUS_SPEC__A> FromSpec<T> for VERUS_SPEC__A
where VERUS_SPEC__A: From<T>,

Source§

exec fn obeys_from_spec() -> bool

Source§

exec fn from_spec(v: T) -> VERUS_SPEC__A

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, VERUS_SPEC__A> IntoSpec<T> for VERUS_SPEC__A
where VERUS_SPEC__A: Into<T>,

Source§

exec fn obeys_into_spec() -> bool

Source§

exec fn into_spec(self) -> T

Source§

impl<T, U> IntoSpecImpl<U> for T
where U: From<T>,

Source§

open spec fn obeys_into_spec() -> bool

{ <U as FromSpec<Self>>::obeys_from_spec() }
Source§

open spec fn into_spec(self) -> U

{ U::from_spec(self) }
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.