pub struct MultiActiveWarning {
pub signature_id: String,
pub active_implementation_ids: Vec<String>,
pub chosen: String,
}Expand description
Diagnostic raised when a signature-pinned ref matches more than
one Active implementation. See ResolutionReport::warnings.
Fields§
§signature_id: String§active_implementation_ids: Vec<String>§chosen: StringTrait Implementations§
Source§impl Clone for MultiActiveWarning
impl Clone for MultiActiveWarning
Source§fn clone(&self) -> MultiActiveWarning
fn clone(&self) -> MultiActiveWarning
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 MultiActiveWarning
impl Debug for MultiActiveWarning
Source§impl PartialEq for MultiActiveWarning
impl PartialEq for MultiActiveWarning
impl StructuralPartialEq for MultiActiveWarning
Auto Trait Implementations§
impl Freeze for MultiActiveWarning
impl RefUnwindSafe for MultiActiveWarning
impl Send for MultiActiveWarning
impl Sync for MultiActiveWarning
impl Unpin for MultiActiveWarning
impl UnsafeUnpin for MultiActiveWarning
impl UnwindSafe for MultiActiveWarning
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