Struct move_model::ast::Spec
source · [−]pub struct Spec {
pub loc: Option<Loc>,
pub conditions: Vec<Condition>,
pub properties: PropertyBag,
pub on_impl: BTreeMap<CodeOffset, Spec>,
}
Expand description
Specification and properties associated with a language item.
Fields
loc: Option<Loc>
conditions: Vec<Condition>
properties: PropertyBag
on_impl: BTreeMap<CodeOffset, Spec>
Implementations
sourceimpl Spec
impl Spec
pub fn has_conditions(&self) -> bool
pub fn filter<P>(&self, pred: P) -> impl Iterator<Item = &Condition> where
P: FnMut(&&Condition) -> bool,
pub fn filter_kind(
&self,
kind: ConditionKind
) -> impl Iterator<Item = &Condition>
pub fn filter_kind_axiom(&self) -> impl Iterator<Item = &Condition>
pub fn any<P>(&self, pred: P) -> bool where
P: FnMut(&Condition) -> bool,
pub fn any_kind(&self, kind: ConditionKind) -> bool
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Spec
impl !Send for Spec
impl !Sync for Spec
impl Unpin for Spec
impl UnwindSafe for Spec
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more