pub struct FunctionSymbol {
pub name: String,
pub is_update_fn: bool,
}
Expand description
A named function symbol with a boolean flag whether the symbol is an explicit uninterpreted function, or an implicit update function implicit.
Fields§
§name: String
§is_update_fn: bool
Implementations§
source§impl FunctionSymbol
impl FunctionSymbol
pub fn new(name: &str, is_update_fn: bool) -> FunctionSymbol
pub fn new_uninterpreted(name: &str) -> FunctionSymbol
pub fn new_update(name: &str) -> FunctionSymbol
Trait Implementations§
source§impl Clone for FunctionSymbol
impl Clone for FunctionSymbol
source§fn clone(&self) -> FunctionSymbol
fn clone(&self) -> FunctionSymbol
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 Debug for FunctionSymbol
impl Debug for FunctionSymbol
source§impl Display for FunctionSymbol
impl Display for FunctionSymbol
source§impl Hash for FunctionSymbol
impl Hash for FunctionSymbol
source§impl PartialEq for FunctionSymbol
impl PartialEq for FunctionSymbol
impl Eq for FunctionSymbol
impl StructuralPartialEq for FunctionSymbol
Auto Trait Implementations§
impl Freeze for FunctionSymbol
impl RefUnwindSafe for FunctionSymbol
impl Send for FunctionSymbol
impl Sync for FunctionSymbol
impl Unpin for FunctionSymbol
impl UnwindSafe for FunctionSymbol
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.