pub enum ProviderRequest {
GetCurrent {
responder: ProviderGetCurrentResponder,
},
}
Expand description
Information about the state of the update system.
Variants§
GetCurrent
Retrieve the currently active update channel.
- response
channel
the currently active update channel.
Fields
§
responder: ProviderGetCurrentResponder
Implementations§
source§impl ProviderRequest
impl ProviderRequest
pub fn into_get_current(self) -> Option<ProviderGetCurrentResponder>
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 ProviderRequest
impl !RefUnwindSafe for ProviderRequest
impl Send for ProviderRequest
impl Sync for ProviderRequest
impl Unpin for ProviderRequest
impl !UnwindSafe for ProviderRequest
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