pub enum Implemented<'a> {
ByName {
module: &'a str,
name: &'a str,
},
ByIndex(Index<'a>),
}Expand description
Different ways to specify what’s being implemented
Variants§
ByName
A specification of what’s being impelmented by module/name
ByIndex(Index<'a>)
A specification using an index
Auto Trait Implementations§
impl<'a> Freeze for Implemented<'a>
impl<'a> RefUnwindSafe for Implemented<'a>
impl<'a> Send for Implemented<'a>
impl<'a> Sync for Implemented<'a>
impl<'a> Unpin for Implemented<'a>
impl<'a> UnwindSafe for Implemented<'a>
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