pub enum EmergencyProviderRequest {
GetCurrent {
responder: EmergencyProviderGetCurrentResponder,
},
}
Expand description
Provides access to position data for emergency purposes. Implementations of this service are expected to be subject to different power and privacy controls than more general location services.
Variants§
GetCurrent
Returns the current position, if available.
Fields
§
responder: EmergencyProviderGetCurrentResponder
Implementations§
Source§impl EmergencyProviderRequest
impl EmergencyProviderRequest
pub fn into_get_current(self) -> Option<EmergencyProviderGetCurrentResponder>
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 EmergencyProviderRequest
impl !RefUnwindSafe for EmergencyProviderRequest
impl Send for EmergencyProviderRequest
impl Sync for EmergencyProviderRequest
impl Unpin for EmergencyProviderRequest
impl !UnwindSafe for EmergencyProviderRequest
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