pub struct YamlCall {
pub name: String,
pub file: Option<String>,
pub line: Option<usize>,
pub external: Option<bool>,
}Expand description
YAML representation of a function call.
Fields§
§name: StringFully qualified name of the called function.
file: Option<String>Present only for internal calls: file path relative to subproject root.
line: Option<usize>Present only for internal calls: line number.
external: Option<bool>true if the call is to an external crate (e.g. std, tokio).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for YamlCall
impl RefUnwindSafe for YamlCall
impl Send for YamlCall
impl Sync for YamlCall
impl Unpin for YamlCall
impl UnwindSafe for YamlCall
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