pub enum IcdLoaderDeviceRequest {
GetIcdList {
responder: IcdLoaderDeviceGetIcdListResponder,
},
}
Expand description
Methods implemented by an MSD and exposed for use of an ICD loader.
Variants§
GetIcdList
Returns a list of ICDs that can be used with this Magma device. The list is sorted in descending order of preference.
Fields
§
responder: IcdLoaderDeviceGetIcdListResponder
Implementations§
Source§impl IcdLoaderDeviceRequest
impl IcdLoaderDeviceRequest
pub fn into_get_icd_list(self) -> Option<IcdLoaderDeviceGetIcdListResponder>
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 IcdLoaderDeviceRequest
impl !RefUnwindSafe for IcdLoaderDeviceRequest
impl Send for IcdLoaderDeviceRequest
impl Sync for IcdLoaderDeviceRequest
impl Unpin for IcdLoaderDeviceRequest
impl !UnwindSafe for IcdLoaderDeviceRequest
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