pub enum EncodingValidatorRequest {
Validate {
results: ServerEnd<ValidateResultsIteratorMarker>,
control_handle: EncodingValidatorControlHandle,
},
}
Variants§
Validate
Runs the encoding validation test suite and reports the results on the given channel.
Fields
§
results: ServerEnd<ValidateResultsIteratorMarker>
§
control_handle: EncodingValidatorControlHandle
Implementations§
Source§impl EncodingValidatorRequest
impl EncodingValidatorRequest
pub fn into_validate( self, ) -> Option<(ServerEnd<ValidateResultsIteratorMarker>, EncodingValidatorControlHandle)>
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 EncodingValidatorRequest
impl !RefUnwindSafe for EncodingValidatorRequest
impl Send for EncodingValidatorRequest
impl Sync for EncodingValidatorRequest
impl Unpin for EncodingValidatorRequest
impl !UnwindSafe for EncodingValidatorRequest
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