pub struct UnanalyzableCommand {
pub command: String,
pub kind: IndirectExecution,
}Expand description
A command that cannot be statically analyzed.
Fields§
§command: StringThe command that triggered the classification (e.g., eval, bash).
kind: IndirectExecutionWhy it’s unanalyzable.
Trait Implementations§
Source§impl Clone for UnanalyzableCommand
impl Clone for UnanalyzableCommand
Source§fn clone(&self) -> UnanalyzableCommand
fn clone(&self) -> UnanalyzableCommand
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 UnanalyzableCommand
impl RefUnwindSafe for UnanalyzableCommand
impl Send for UnanalyzableCommand
impl Sync for UnanalyzableCommand
impl Unpin for UnanalyzableCommand
impl UnsafeUnpin for UnanalyzableCommand
impl UnwindSafe for UnanalyzableCommand
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