pub enum PropertyProviderRequest {
GetProfile {
responder: PropertyProviderGetProfileResponder,
},
}
Expand description
Provides internationalization properties.
Components that need to change their behavior in response to the user’s internationalization profile may request an instance of this service from their namespace, if available. A component may choose to pass along the service that it received from its parent to its own children, or to override it and apply additional customizations.
See also fuchsia.ui.views.View
.
Variants§
GetProfile
Gets the user’s internationalization profile.
Fields
§
responder: PropertyProviderGetProfileResponder
Implementations§
Source§impl PropertyProviderRequest
impl PropertyProviderRequest
pub fn into_get_profile(self) -> Option<PropertyProviderGetProfileResponder>
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 PropertyProviderRequest
impl !RefUnwindSafe for PropertyProviderRequest
impl Send for PropertyProviderRequest
impl Sync for PropertyProviderRequest
impl Unpin for PropertyProviderRequest
impl !UnwindSafe for PropertyProviderRequest
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