pub enum CheckerRequest {
SentinelFileContents {
responder: CheckerSentinelFileContentsResponder,
},
}
Variants§
SentinelFileContents
Contains the contents of the “data/bootfs_package_resolver_test_sentinel” file of the “fuchsia-boot://root_component_pkg” package if it correctly resolves, otherwise the connection will be closed.
Fields
§
responder: CheckerSentinelFileContentsResponder
Implementations§
Source§impl CheckerRequest
impl CheckerRequest
pub fn into_sentinel_file_contents( self, ) -> Option<CheckerSentinelFileContentsResponder>
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 CheckerRequest
impl !RefUnwindSafe for CheckerRequest
impl Send for CheckerRequest
impl Sync for CheckerRequest
impl Unpin for CheckerRequest
impl !UnwindSafe for CheckerRequest
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