pub struct CallGraphQuery {
pub calls_from: Option<String>,
pub calls_to: Option<String>,
pub calls_between: Option<(String, String)>,
pub depth: u32,
}Fields§
§calls_from: Option<String>§calls_to: Option<String>§calls_between: Option<(String, String)>§depth: u32Auto Trait Implementations§
impl Freeze for CallGraphQuery
impl RefUnwindSafe for CallGraphQuery
impl Send for CallGraphQuery
impl Sync for CallGraphQuery
impl Unpin for CallGraphQuery
impl UnsafeUnpin for CallGraphQuery
impl UnwindSafe for CallGraphQuery
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