pub struct SymbolChainQuery<'a> {
pub file: &'a str,
pub symbol: &'a str,
pub depth: u32,
pub directions: TraceDirections,
}Expand description
Target and traversal parameters for a symbol-chain trace.
Fields§
§file: &'a strFile path of the target symbol, root-relative or absolute.
symbol: &'a strExported symbol name to trace.
depth: u32Maximum traversal depth in each direction.
directions: TraceDirectionsWhich directions to walk.
Trait Implementations§
Source§impl<'a> Clone for SymbolChainQuery<'a>
impl<'a> Clone for SymbolChainQuery<'a>
impl<'a> Copy for SymbolChainQuery<'a>
Auto Trait Implementations§
impl<'a> Freeze for SymbolChainQuery<'a>
impl<'a> RefUnwindSafe for SymbolChainQuery<'a>
impl<'a> Send for SymbolChainQuery<'a>
impl<'a> Sync for SymbolChainQuery<'a>
impl<'a> Unpin for SymbolChainQuery<'a>
impl<'a> UnsafeUnpin for SymbolChainQuery<'a>
impl<'a> UnwindSafe for SymbolChainQuery<'a>
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