pub enum DataPlaneRequest {
DataDo {
responder: DataPlaneDataDoResponder,
},
}
Variants§
DataDo
Fields
§
responder: DataPlaneDataDoResponder
Implementations§
Source§impl DataPlaneRequest
impl DataPlaneRequest
pub fn into_data_do(self) -> Option<DataPlaneDataDoResponder>
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 DataPlaneRequest
impl !RefUnwindSafe for DataPlaneRequest
impl Send for DataPlaneRequest
impl Sync for DataPlaneRequest
impl Unpin for DataPlaneRequest
impl !UnwindSafe for DataPlaneRequest
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