pub enum ProductRequest {
GetInfo {
responder: ProductGetInfoResponder,
},
}
Expand description
Product provides an interface to retrieve product-specific properties.
Variants§
GetInfo
Fields
§
responder: ProductGetInfoResponder
Implementations§
Source§impl ProductRequest
impl ProductRequest
pub fn into_get_info(self) -> Option<ProductGetInfoResponder>
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 ProductRequest
impl !RefUnwindSafe for ProductRequest
impl Send for ProductRequest
impl Sync for ProductRequest
impl Unpin for ProductRequest
impl !UnwindSafe for ProductRequest
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