pub struct WorkflowResultData {
pub application: Application,
pub sandbox: Sandbox,
pub app_id: String,
pub sandbox_id: String,
pub build_id: Option<String>,
pub app_created: bool,
pub sandbox_created: bool,
pub files_uploaded: usize,
}Expand description
Result of the complete workflow
Fields§
§application: ApplicationApplication information
sandbox: SandboxSandbox information
app_id: StringNumeric application ID for XML API
sandbox_id: StringNumeric sandbox ID for XML API
build_id: Option<String>Build ID from scan initiation (if scan was started)
app_created: boolWhether the application was newly created
sandbox_created: boolWhether the sandbox was newly created
files_uploaded: usizeNumber of files uploaded
Trait Implementations§
Source§impl Clone for WorkflowResultData
impl Clone for WorkflowResultData
Source§fn clone(&self) -> WorkflowResultData
fn clone(&self) -> WorkflowResultData
Returns a duplicate of the value. Read more
1.0.0 · 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 WorkflowResultData
impl RefUnwindSafe for WorkflowResultData
impl Send for WorkflowResultData
impl Sync for WorkflowResultData
impl Unpin for WorkflowResultData
impl UnwindSafe for WorkflowResultData
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