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: Application
Application information
sandbox: Sandbox
Sandbox information
app_id: String
Numeric application ID for XML API
sandbox_id: String
Numeric sandbox ID for XML API
build_id: Option<String>
Build ID from scan initiation (if scan was started)
app_created: bool
Whether the application was newly created
sandbox_created: bool
Whether the sandbox was newly created
files_uploaded: usize
Number 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