pub struct Union {
pub names: Vec<Vec<u8>>,
pub sources: Vec<SourceReport>,
}Expand description
The union, and where each name came from.
Fields§
§names: Vec<Vec<u8>>Every name, first-seen order, deduplicated.
sources: Vec<SourceReport>One entry per source, in the order they were given.
Auto Trait Implementations§
impl Freeze for Union
impl RefUnwindSafe for Union
impl Send for Union
impl Sync for Union
impl Unpin for Union
impl UnsafeUnpin for Union
impl UnwindSafe for Union
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