#[non_exhaustive]pub enum DiscoveryEvent<'path> {
DebuginfodRequest {
artifact: &'static str,
build_id: &'path str,
endpoint: &'path str,
related_path: &'path Path,
},
}Available on crate feature
convert only.Expand description
A potentially slow operation reported during path-based debug discovery.
Pass an observer to ElfConverter::convert_path_with_observer to surface
network activity in interactive tools.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DebuginfodRequest
A debuginfod request is about to be issued.
Trait Implementations§
Source§impl<'path> Clone for DiscoveryEvent<'path>
impl<'path> Clone for DiscoveryEvent<'path>
Source§fn clone(&self) -> DiscoveryEvent<'path>
fn clone(&self) -> DiscoveryEvent<'path>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'path> Copy for DiscoveryEvent<'path>
Source§impl<'path> Debug for DiscoveryEvent<'path>
impl<'path> Debug for DiscoveryEvent<'path>
impl<'path> Eq for DiscoveryEvent<'path>
Source§impl<'path> PartialEq for DiscoveryEvent<'path>
impl<'path> PartialEq for DiscoveryEvent<'path>
impl<'path> StructuralPartialEq for DiscoveryEvent<'path>
Auto Trait Implementations§
impl<'path> Freeze for DiscoveryEvent<'path>
impl<'path> RefUnwindSafe for DiscoveryEvent<'path>
impl<'path> Send for DiscoveryEvent<'path>
impl<'path> Sync for DiscoveryEvent<'path>
impl<'path> Unpin for DiscoveryEvent<'path>
impl<'path> UnsafeUnpin for DiscoveryEvent<'path>
impl<'path> UnwindSafe for DiscoveryEvent<'path>
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