pub enum ImplementationItem {
Constant(Constant),
Method(Function),
}Expand description
ImplItem Enum
Variants§
Trait Implementations§
Source§impl Clone for ImplementationItem
impl Clone for ImplementationItem
Source§fn clone(&self) -> ImplementationItem
fn clone(&self) -> ImplementationItem
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 Debug for ImplementationItem
impl Debug for ImplementationItem
Source§impl PartialEq for ImplementationItem
impl PartialEq for ImplementationItem
Source§impl ReplaceIdentifier for ImplementationItem
impl ReplaceIdentifier for ImplementationItem
Source§fn replace_identifier(&mut self, old: &Identifier, new: &Identifier)
fn replace_identifier(&mut self, old: &Identifier, new: &Identifier)
Replace all occurrences of the
old identifier by the new identifier.Source§impl TryFrom<ImplItem> for ImplementationItem
impl TryFrom<ImplItem> for ImplementationItem
impl StructuralPartialEq for ImplementationItem
Auto Trait Implementations§
impl Freeze for ImplementationItem
impl RefUnwindSafe for ImplementationItem
impl Send for ImplementationItem
impl Sync for ImplementationItem
impl Unpin for ImplementationItem
impl UnwindSafe for ImplementationItem
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