pub enum BlobfsVerifierRequest {
Verify {
options: VerifyOptions,
responder: BlobfsVerifierVerifyResponder,
},
}
Expand description
An update verifier to determine if Blobfs is working as expected.
Variants§
Verify
Verifies the update we just applied does not compromise an OTA dependency.
If the verification fails, the [Verifier
] should log the reason why.
The caller is responsible for setting any timeouts.
- request
options
the configuration to use when verifying.
- error a value describing the cause of verification failure.
Implementations§
Source§impl BlobfsVerifierRequest
impl BlobfsVerifierRequest
pub fn into_verify( self, ) -> Option<(VerifyOptions, BlobfsVerifierVerifyResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlobfsVerifierRequest
impl !RefUnwindSafe for BlobfsVerifierRequest
impl Send for BlobfsVerifierRequest
impl Sync for BlobfsVerifierRequest
impl Unpin for BlobfsVerifierRequest
impl !UnwindSafe for BlobfsVerifierRequest
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