#[non_exhaustive]#[repr(u32)]pub enum AServiceManager_AddServiceFlag {
ADD_SERVICE_ALLOW_ISOLATED = 1,
ADD_SERVICE_DUMP_FLAG_PRIORITY_CRITICAL = 2,
ADD_SERVICE_DUMP_FLAG_PRIORITY_HIGH = 4,
ADD_SERVICE_DUMP_FLAG_PRIORITY_NORMAL = 8,
ADD_SERVICE_DUMP_FLAG_PRIORITY_DEFAULT = 16,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ADD_SERVICE_ALLOW_ISOLATED = 1
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_CRITICAL = 2
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_HIGH = 4
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_NORMAL = 8
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_DEFAULT = 16
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
Trait Implementations§
Source§impl Clone for AServiceManager_AddServiceFlag
impl Clone for AServiceManager_AddServiceFlag
Source§fn clone(&self) -> AServiceManager_AddServiceFlag
fn clone(&self) -> AServiceManager_AddServiceFlag
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for AServiceManager_AddServiceFlag
impl PartialEq for AServiceManager_AddServiceFlag
Source§fn eq(&self, other: &AServiceManager_AddServiceFlag) -> bool
fn eq(&self, other: &AServiceManager_AddServiceFlag) -> bool
self
and other
values to be equal, and is used by ==
.impl Copy for AServiceManager_AddServiceFlag
impl Eq for AServiceManager_AddServiceFlag
impl StructuralPartialEq for AServiceManager_AddServiceFlag
Auto Trait Implementations§
impl Freeze for AServiceManager_AddServiceFlag
impl RefUnwindSafe for AServiceManager_AddServiceFlag
impl Send for AServiceManager_AddServiceFlag
impl Sync for AServiceManager_AddServiceFlag
impl Unpin for AServiceManager_AddServiceFlag
impl UnwindSafe for AServiceManager_AddServiceFlag
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)