pub enum KeyboardSetRequest {
Set {
settings: KeyboardSettings,
responder: KeyboardSetSetResponder,
},
}
Expand description
The mutable API for modifying the keyboard settings.
Variants§
Set
Setting protocol: if a field is left unset, it is not modified. To clear a field, set it to its type’s “zero” value.
Implementations§
Source§impl KeyboardSetRequest
impl KeyboardSetRequest
pub fn into_set(self) -> Option<(KeyboardSettings, KeyboardSetSetResponder)>
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 KeyboardSetRequest
impl !RefUnwindSafe for KeyboardSetRequest
impl Send for KeyboardSetRequest
impl Sync for KeyboardSetRequest
impl Unpin for KeyboardSetRequest
impl !UnwindSafe for KeyboardSetRequest
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