Skip to main content

SumRA

Enum SumRA 

Source
pub enum SumRA<RA1: ResourceAlgebra, RA2: ResourceAlgebra> {
    Left(RA1),
    Right(RA2),
    Invalid,
}

Variants§

§

Left(RA1)

§

Right(RA2)

§

Invalid

Implementations§

Source§

impl<RA1: ResourceAlgebra, RA2: ResourceAlgebra> SumRA<RA1, RA2>

Source

pub fn arrow_Left_0(self) -> RA1

Source

pub fn arrow_Right_0(self) -> RA2

Trait Implementations§

Source§

impl<RA1: ResourceAlgebra, RA2: ResourceAlgebra> ResourceAlgebra for SumRA<RA1, RA2>

Source§

open spec fn valid(self) -> bool

{
    match self {
        SumRA::Left(l) => l.valid(),
        SumRA::Right(r) => r.valid(),
        SumRA::Invalid => false,
    }
}
Source§

open spec fn op(a: Self, b: Self) -> Self

{
    match (a, b) {
        (SumRA::Left(la), SumRA::Left(lb)) => SumRA::Left(RA1::op(la, lb)),
        (SumRA::Right(ra), SumRA::Right(rb)) => SumRA::Right(RA2::op(ra, rb)),
        _ => SumRA::Invalid,
    }
}
Source§

proof fn associative(a: Self, b: Self, c: Self)

Source§

proof fn commutative(a: Self, b: Self)

Source§

proof fn valid_op(a: Self, b: Self)

Auto Trait Implementations§

§

impl<RA1, RA2> Freeze for SumRA<RA1, RA2>
where RA1: Freeze, RA2: Freeze,

§

impl<RA1, RA2> RefUnwindSafe for SumRA<RA1, RA2>
where RA1: RefUnwindSafe, RA2: RefUnwindSafe,

§

impl<RA1, RA2> Send for SumRA<RA1, RA2>
where RA1: Send, RA2: Send,

§

impl<RA1, RA2> Sync for SumRA<RA1, RA2>
where RA1: Sync, RA2: Sync,

§

impl<RA1, RA2> Unpin for SumRA<RA1, RA2>
where RA1: Unpin, RA2: Unpin,

§

impl<RA1, RA2> UnsafeUnpin for SumRA<RA1, RA2>
where RA1: UnsafeUnpin, RA2: UnsafeUnpin,

§

impl<RA1, RA2> UnwindSafe for SumRA<RA1, RA2>
where RA1: UnwindSafe, RA2: 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, VERUS_SPEC__A> TryFromSpec<T> for VERUS_SPEC__A
where VERUS_SPEC__A: TryFrom<T>,

Source§

exec fn obeys_try_from_spec() -> bool

Source§

exec fn try_from_spec( v: T, ) -> Result<VERUS_SPEC__A, <VERUS_SPEC__A as TryFrom<T>>::Error>

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.
Source§

impl<T, VERUS_SPEC__A> TryIntoSpec<T> for VERUS_SPEC__A
where VERUS_SPEC__A: TryInto<T>,

Source§

exec fn obeys_try_into_spec() -> bool

Source§

exec fn try_into_spec(self) -> Result<T, <VERUS_SPEC__A as TryInto<T>>::Error>

Source§

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

Source§

open spec fn obeys_try_into_spec() -> bool

{ <U as TryFromSpec<Self>>::obeys_try_from_spec() }
Source§

open spec fn try_into_spec(self) -> Result<U, <U as TryFrom<T>>::Error>

{ <U as TryFromSpec<Self>>::try_from_spec(self) }