#[non_exhaustive]pub struct Links {
pub link: Vec<Link>,
pub dropped_links_count: i32,
/* private fields */
}Expand description
A collection of links, which are references from this span to a span in the same or different trace.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.link: Vec<Link>A collection of links.
dropped_links_count: i32The number of dropped links after the maximum size was enforced. If this value is 0, then no links were dropped.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Links
Auto Trait Implementations§
impl Freeze for Links
impl RefUnwindSafe for Links
impl Send for Links
impl Sync for Links
impl Unpin for Links
impl UnwindSafe for Links
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