pub struct SecurityReport {
pub name: String,
pub has_signature: bool,
pub signature_verified: bool,
pub is_approved: bool,
pub has_supply_chain: bool,
pub supply_chain_verified: bool,
pub permissions: ModulePermissions,
pub sandbox_enabled: bool,
}Expand description
Security report for a module
Fields§
§name: String§has_signature: bool§signature_verified: bool§is_approved: bool§has_supply_chain: bool§supply_chain_verified: bool§permissions: ModulePermissions§sandbox_enabled: boolTrait Implementations§
Source§impl Clone for SecurityReport
impl Clone for SecurityReport
Source§fn clone(&self) -> SecurityReport
fn clone(&self) -> SecurityReport
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 moreSource§impl Debug for SecurityReport
impl Debug for SecurityReport
Source§impl<'de> Deserialize<'de> for SecurityReport
impl<'de> Deserialize<'de> for SecurityReport
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 SecurityReport
impl RefUnwindSafe for SecurityReport
impl Send for SecurityReport
impl Sync for SecurityReport
impl Unpin for SecurityReport
impl UnwindSafe for SecurityReport
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