pub enum VirtioWaylandImporterRequest {
ImportImage {
image: VirtioImage,
responder: VirtioWaylandImporterImportImageResponder,
},
ExportImage {
vfd_id: u32,
responder: VirtioWaylandImporterExportImageResponder,
},
}
Variants§
Implementations§
Source§impl VirtioWaylandImporterRequest
impl VirtioWaylandImporterRequest
pub fn into_import_image( self, ) -> Option<(VirtioImage, VirtioWaylandImporterImportImageResponder)>
pub fn into_export_image( self, ) -> Option<(u32, VirtioWaylandImporterExportImageResponder)>
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 VirtioWaylandImporterRequest
impl !RefUnwindSafe for VirtioWaylandImporterRequest
impl Send for VirtioWaylandImporterRequest
impl Sync for VirtioWaylandImporterRequest
impl Unpin for VirtioWaylandImporterRequest
impl !UnwindSafe for VirtioWaylandImporterRequest
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