Skip to main content

ResourceRef

Struct ResourceRef 

Source
pub struct ResourceRef<'a, RA: ResourceAlgebra> { /* private fields */ }

Implementations§

Source§

impl<'a, RA: ResourceAlgebra> ResourceRef<'a, RA>

Source

pub closed spec fn loc(self) -> Loc

Source

pub closed spec fn value(self) -> RA

Source

pub proof fn validate(tracked &self)

ensures
self.value().valid(),

Whenever we have a resource, that resource is valid. See Resource::validate for more details

Source

pub proof fn join_shared(tracked &self, tracked other: &Self) -> tracked out : Self

requires
self.loc() == other.loc(),
ensures
out.loc() == self.loc(),
incl(self.value(), out.value()) || self.value() == out.value(),
incl(other.value(), out.value()) || other.value() == out.value(),

This is useful when you have two (or more) shared resources and want to learn that they agree, as you can combine this validate, e.g., x.join_shared(y).validate().

Source

pub proof fn weaken(tracked &self, target: RA) -> tracked out : ResourceRef<'a, RA>

requires
incl(target, self.value()),
ensures
out.loc() == self.loc(),
out.value() == target,

Extract a shared reference to a preceding element in the extension order from a shared reference.

Source

pub proof fn duplicate_previous(tracked &self, value: RA) -> tracked out : Resource<RA>

requires
frame_preserving_update_opt(self.value(), RA::op(value, self.value())),
ensures
out.loc() == self.loc(),
out.value() == value,

If x --> x · y is a frame-perserving update, and we have a shared reference to x, we can create a resource to y

Source

pub proof fn join_shared_to_target(tracked &self, tracked other: &Self, target: RA) -> tracked out : Self

requires
self.loc() == other.loc(),
conjunct_shared(Some(self.value()), Some(other.value()), Some(target)),
ensures
out.loc() == self.loc(),
out.value() == target,

We can do a similar update to update_with_shared for non-deterministic updates

Auto Trait Implementations§

§

impl<'a, RA> Freeze for ResourceRef<'a, RA>

§

impl<'a, RA> RefUnwindSafe for ResourceRef<'a, RA>
where RA: RefUnwindSafe,

§

impl<'a, RA> Send for ResourceRef<'a, RA>
where RA: Sync,

§

impl<'a, RA> Sync for ResourceRef<'a, RA>
where RA: Sync,

§

impl<'a, RA> Unpin for ResourceRef<'a, RA>

§

impl<'a, RA> UnsafeUnpin for ResourceRef<'a, RA>

§

impl<'a, RA> UnwindSafe for ResourceRef<'a, RA>
where RA: RefUnwindSafe,

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) }