pub enum ParFunSymbolDecl<'st> {
Par(&'st [Symbol<'st>], Identifier<'st>, &'st [Sort<'st>], &'st [Attribute<'st>]),
FunSymbolDecl(FunSymbolDecl<'st>),
}
Variants§
Par(&'st [Symbol<'st>], Identifier<'st>, &'st [Sort<'st>], &'st [Attribute<'st>])
(par (<symbol>+) (<identifier> <sort>+ <attribute>*))
FunSymbolDecl(FunSymbolDecl<'st>)
<fun_symbol_decl>
Implementations§
Source§impl<'st> ParFunSymbolDecl<'st>
impl<'st> ParFunSymbolDecl<'st>
Trait Implementations§
Source§impl<'st> Clone for ParFunSymbolDecl<'st>
impl<'st> Clone for ParFunSymbolDecl<'st>
Source§fn clone(&self) -> ParFunSymbolDecl<'st>
fn clone(&self) -> ParFunSymbolDecl<'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 ParFunSymbolDecl<'st>
impl<'st> Debug for ParFunSymbolDecl<'st>
Source§impl Display for ParFunSymbolDecl<'_>
impl Display for ParFunSymbolDecl<'_>
Source§impl<'st> Hash for ParFunSymbolDecl<'st>
impl<'st> Hash for ParFunSymbolDecl<'st>
Source§impl<'st> PartialEq for ParFunSymbolDecl<'st>
impl<'st> PartialEq for ParFunSymbolDecl<'st>
impl<'st> Copy for ParFunSymbolDecl<'st>
impl<'st> Eq for ParFunSymbolDecl<'st>
impl<'st> StructuralPartialEq for ParFunSymbolDecl<'st>
Auto Trait Implementations§
impl<'st> Freeze for ParFunSymbolDecl<'st>
impl<'st> RefUnwindSafe for ParFunSymbolDecl<'st>
impl<'st> Send for ParFunSymbolDecl<'st>
impl<'st> Sync for ParFunSymbolDecl<'st>
impl<'st> Unpin for ParFunSymbolDecl<'st>
impl<'st> UnwindSafe for ParFunSymbolDecl<'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