pub struct AnalyzeRequest {
pub path: PathBuf,
pub cargo: CargoOptions,
pub runtime_trace: Option<PathBuf>,
pub component_root: Option<String>,
pub dataflow: bool,
pub heuristic_architecture: bool,
pub use_cache: bool,
}Expand description
Inputs for a unified-model scan.
Fields§
§path: PathBuf§cargo: CargoOptions§runtime_trace: Option<PathBuf>§component_root: Option<String>§dataflow: bool§heuristic_architecture: bool§use_cache: boolTrait Implementations§
Source§impl Clone for AnalyzeRequest
impl Clone for AnalyzeRequest
Source§fn clone(&self) -> AnalyzeRequest
fn clone(&self) -> AnalyzeRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AnalyzeRequest
impl RefUnwindSafe for AnalyzeRequest
impl Send for AnalyzeRequest
impl Sync for AnalyzeRequest
impl Unpin for AnalyzeRequest
impl UnsafeUnpin for AnalyzeRequest
impl UnwindSafe for AnalyzeRequest
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