pub struct VerificationResult { /* fields omitted */ }
Return the string representation of the check result
use package_file_verify::VerificationResult;
let result = VerificationResult::unknown();
let string = result.to_string();
assert_eq!(string, "??????????")
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.