pub struct BundleScope {
pub workload_id: String,
pub backend_family: String,
pub selected_checks: Vec<String>,
pub timeout_class: String,
pub config_flags: Vec<String>,
}Expand description
Scope of the evidence bundle.
Fields§
§workload_id: StringWhich workload was used.
backend_family: StringBackend family used for execution.
selected_checks: Vec<String>Ordered list of checks executed.
timeout_class: StringEffective timeout class for the run.
config_flags: Vec<String>Sorted config-flag projection affecting execution.
Trait Implementations§
Source§impl Clone for BundleScope
impl Clone for BundleScope
Source§fn clone(&self) -> BundleScope
fn clone(&self) -> BundleScope
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 moreSource§impl Debug for BundleScope
impl Debug for BundleScope
Source§impl<'de> Deserialize<'de> for BundleScope
impl<'de> Deserialize<'de> for BundleScope
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BundleScope
impl RefUnwindSafe for BundleScope
impl Send for BundleScope
impl Sync for BundleScope
impl Unpin for BundleScope
impl UnsafeUnpin for BundleScope
impl UnwindSafe for BundleScope
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