pub struct CodeGraphSelectorResolutionExplanation {
pub selector: String,
pub resolved_block_id: Option<BlockId>,
pub match_kind: Option<String>,
pub ambiguous: bool,
pub explanation: String,
pub candidates: Vec<CodeGraphNodeSummary>,
}Fields§
§selector: String§resolved_block_id: Option<BlockId>§match_kind: Option<String>§ambiguous: bool§explanation: String§candidates: Vec<CodeGraphNodeSummary>Trait Implementations§
Source§impl Clone for CodeGraphSelectorResolutionExplanation
impl Clone for CodeGraphSelectorResolutionExplanation
Source§fn clone(&self) -> CodeGraphSelectorResolutionExplanation
fn clone(&self) -> CodeGraphSelectorResolutionExplanation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for CodeGraphSelectorResolutionExplanation
impl<'de> Deserialize<'de> for CodeGraphSelectorResolutionExplanation
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
Auto Trait Implementations§
impl Freeze for CodeGraphSelectorResolutionExplanation
impl RefUnwindSafe for CodeGraphSelectorResolutionExplanation
impl Send for CodeGraphSelectorResolutionExplanation
impl Sync for CodeGraphSelectorResolutionExplanation
impl Unpin for CodeGraphSelectorResolutionExplanation
impl UnsafeUnpin for CodeGraphSelectorResolutionExplanation
impl UnwindSafe for CodeGraphSelectorResolutionExplanation
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