pub struct SymbolReport {Show 14 fields
pub id: u32,
pub name: String,
pub demangled: String,
pub crate_name: Option<String>,
pub module_path: Vec<String>,
pub address: u64,
pub size_bytes: Option<u64>,
pub source_location: Option<SourceLocation>,
pub object_format: ObjectFormat,
pub own_frame: FrameInfo,
pub worst_path: WorstPathInfo,
pub confidence: Confidence,
pub evidence: Vec<Evidence>,
pub unresolved_reasons: Vec<UnresolvedReason>,
}Fields§
§id: u32§name: String§demangled: String§crate_name: Option<String>§module_path: Vec<String>§address: u64§size_bytes: Option<u64>§source_location: Option<SourceLocation>§object_format: ObjectFormat§own_frame: FrameInfo§worst_path: WorstPathInfo§confidence: Confidence§evidence: Vec<Evidence>§unresolved_reasons: Vec<UnresolvedReason>Trait Implementations§
Source§impl Clone for SymbolReport
impl Clone for SymbolReport
Source§fn clone(&self) -> SymbolReport
fn clone(&self) -> SymbolReport
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 moreSource§impl Debug for SymbolReport
impl Debug for SymbolReport
Source§impl<'de> Deserialize<'de> for SymbolReport
impl<'de> Deserialize<'de> for SymbolReport
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
Source§impl JsonSchema for SymbolReport
impl JsonSchema for SymbolReport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for SymbolReport
impl RefUnwindSafe for SymbolReport
impl Send for SymbolReport
impl Sync for SymbolReport
impl Unpin for SymbolReport
impl UnsafeUnpin for SymbolReport
impl UnwindSafe for SymbolReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more