pub enum OptOutRequest {
Get {
responder: OptOutGetResponder,
},
}
Expand description
The state of the update system’s opt-out functionality.
Variants§
Get
Gets the current update opt-out status.
- response
value
The user’s current opt-out preference.
Fields
§
responder: OptOutGetResponder
Implementations§
Source§impl OptOutRequest
impl OptOutRequest
pub fn into_get(self) -> Option<OptOutGetResponder>
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 OptOutRequest
impl !RefUnwindSafe for OptOutRequest
impl Send for OptOutRequest
impl Sync for OptOutRequest
impl Unpin for OptOutRequest
impl !UnwindSafe for OptOutRequest
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