pub struct SandboxDependencyCheck {
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Result of checking sandbox dependencies.
Fields§
§errors: Vec<String>Errors that prevent the sandbox from running.
warnings: Vec<String>Warnings about degraded functionality.
Implementations§
Source§impl SandboxDependencyCheck
impl SandboxDependencyCheck
Sourcepub fn into_result(self) -> Result<Self, SandboxError>
pub fn into_result(self) -> Result<Self, SandboxError>
Convert to Result, returning error if there are any errors.
Trait Implementations§
Source§impl Clone for SandboxDependencyCheck
impl Clone for SandboxDependencyCheck
Source§fn clone(&self) -> SandboxDependencyCheck
fn clone(&self) -> SandboxDependencyCheck
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 SandboxDependencyCheck
impl Debug for SandboxDependencyCheck
Source§impl Default for SandboxDependencyCheck
impl Default for SandboxDependencyCheck
Source§fn default() -> SandboxDependencyCheck
fn default() -> SandboxDependencyCheck
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SandboxDependencyCheck
impl RefUnwindSafe for SandboxDependencyCheck
impl Send for SandboxDependencyCheck
impl Sync for SandboxDependencyCheck
impl Unpin for SandboxDependencyCheck
impl UnwindSafe for SandboxDependencyCheck
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