pub struct ContextComparison {
pub context_id: String,
pub role: ContextRole,
pub found: bool,
pub unit_type: Option<String>,
pub signature: Option<String>,
pub file_path: Option<String>,
}Expand description
Comparison data for one context within a Comparison.
Fields§
§context_id: StringContext identifier.
role: ContextRoleContext role.
found: boolWhether the symbol was found in this context.
unit_type: Option<String>Type label if the symbol was found.
signature: Option<String>Signature string if the symbol was found.
file_path: Option<String>File path if the symbol was found.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ContextComparison
impl RefUnwindSafe for ContextComparison
impl Send for ContextComparison
impl Sync for ContextComparison
impl Unpin for ContextComparison
impl UnsafeUnpin for ContextComparison
impl UnwindSafe for ContextComparison
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