pub enum ColorTransformRequest {
RegisterColorTransformHandler {
handler: ClientEnd<ColorTransformHandlerMarker>,
control_handle: ColorTransformControlHandle,
},
}
Expand description
Allows a presentation owner to register a handler for color transforms. This API is implemented by the Accessibility manager and called by Root Presenter.
Variants§
RegisterColorTransformHandler
Registers a handler for changes in the color transform configuration.
Implementations§
Source§impl ColorTransformRequest
impl ColorTransformRequest
pub fn into_register_color_transform_handler( self, ) -> Option<(ClientEnd<ColorTransformHandlerMarker>, ColorTransformControlHandle)>
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 ColorTransformRequest
impl !RefUnwindSafe for ColorTransformRequest
impl Send for ColorTransformRequest
impl Sync for ColorTransformRequest
impl Unpin for ColorTransformRequest
impl !UnwindSafe for ColorTransformRequest
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