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