Struct google_cloudtrace2::api::Links
source · pub struct Links {
pub dropped_links_count: Option<i32>,
pub link: Option<Vec<Link>>,
}Expand description
A collection of links, which are references from this span to a span in the same or different trace.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dropped_links_count: Option<i32>The number of dropped links after the maximum size was enforced. If this value is 0, then no links were dropped.
link: Option<Vec<Link>>A collection of links.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Links
impl<'de> Deserialize<'de> for Links
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more