pub enum TheoryAttribute<'st> {
Sorts(&'st [SortSymbolDecl<'st>]),
Funs(&'st [ParFunSymbolDecl<'st>]),
SortsDescription(&'st str),
FunsDescription(&'st str),
Definition(&'st str),
Values(&'st str),
Notes(&'st str),
Attribute(Attribute<'st>),
}
Variants§
Sorts(&'st [SortSymbolDecl<'st>])
:sorts (<sort_symbol_decl>+)
Funs(&'st [ParFunSymbolDecl<'st>])
:funs (<par_fun_symbol_decl>+)
SortsDescription(&'st str)
:sorts-description <string>
FunsDescription(&'st str)
:funs-description <string>
Definition(&'st str)
:definition <string>
Values(&'st str)
:values <string>
Notes(&'st str)
:notes <string>
Attribute(Attribute<'st>)
<attribute>
Implementations§
Source§impl<'st> TheoryAttribute<'st>
impl<'st> TheoryAttribute<'st>
Trait Implementations§
Source§impl<'st> Clone for TheoryAttribute<'st>
impl<'st> Clone for TheoryAttribute<'st>
Source§fn clone(&self) -> TheoryAttribute<'st>
fn clone(&self) -> TheoryAttribute<'st>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'st> Debug for TheoryAttribute<'st>
impl<'st> Debug for TheoryAttribute<'st>
Source§impl Display for TheoryAttribute<'_>
impl Display for TheoryAttribute<'_>
Source§impl<'st> Hash for TheoryAttribute<'st>
impl<'st> Hash for TheoryAttribute<'st>
Source§impl<'st> PartialEq for TheoryAttribute<'st>
impl<'st> PartialEq for TheoryAttribute<'st>
impl<'st> Copy for TheoryAttribute<'st>
impl<'st> Eq for TheoryAttribute<'st>
impl<'st> StructuralPartialEq for TheoryAttribute<'st>
Auto Trait Implementations§
impl<'st> Freeze for TheoryAttribute<'st>
impl<'st> RefUnwindSafe for TheoryAttribute<'st>
impl<'st> Send for TheoryAttribute<'st>
impl<'st> Sync for TheoryAttribute<'st>
impl<'st> Unpin for TheoryAttribute<'st>
impl<'st> UnwindSafe for TheoryAttribute<'st>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more