pub enum ColorTransformHandlerRequest {
SetColorTransformConfiguration {
configuration: ColorTransformConfiguration,
responder: ColorTransformHandlerSetColorTransformConfigurationResponder,
},
}
Expand description
Handler implemented by the owner of the presentation. Accessibility manager uses this protocol to make changes to the screen’s color transform.
Variants§
SetColorTransformConfiguration
Called when the color transform configuration has changed.
Fields
§
configuration: ColorTransformConfiguration
Implementations§
Source§impl ColorTransformHandlerRequest
impl ColorTransformHandlerRequest
pub fn into_set_color_transform_configuration( self, ) -> Option<(ColorTransformConfiguration, ColorTransformHandlerSetColorTransformConfigurationResponder)>
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 ColorTransformHandlerRequest
impl !RefUnwindSafe for ColorTransformHandlerRequest
impl Send for ColorTransformHandlerRequest
impl Sync for ColorTransformHandlerRequest
impl Unpin for ColorTransformHandlerRequest
impl !UnwindSafe for ColorTransformHandlerRequest
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