pub struct OverloadEntry {
pub symbol: String,
pub typeclass: String,
pub priority: u32,
}Expand description
An overloaded operator entry.
Fields§
§symbol: StringThe operator symbol
typeclass: StringThe type class providing this operator
priority: u32Priority (higher = preferred)
Implementations§
Trait Implementations§
Source§impl Clone for OverloadEntry
impl Clone for OverloadEntry
Source§fn clone(&self) -> OverloadEntry
fn clone(&self) -> OverloadEntry
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 moreAuto Trait Implementations§
impl Freeze for OverloadEntry
impl RefUnwindSafe for OverloadEntry
impl Send for OverloadEntry
impl Sync for OverloadEntry
impl Unpin for OverloadEntry
impl UnsafeUnpin for OverloadEntry
impl UnwindSafe for OverloadEntry
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