pub struct AdbShellAm { /* private fields */ }Implementationsยง
Sourceยงimpl AdbShellAm
impl AdbShellAm
pub fn new() -> Self
pub fn d(&mut self, d: bool) -> &mut Self
pub fn w(&mut self, w: bool) -> &mut Self
pub fn p(&mut self, p: &Path) -> &mut Self
pub fn r(&mut self, r: bool) -> &mut Self
pub fn s(&mut self, s: bool) -> &mut Self
pub fn n(&mut self, n: bool) -> &mut Self
pub fn user(&mut self, user: String) -> &mut Self
pub fn opengl_trace(&mut self, opengl_trace: bool) -> &mut Self
pub fn start_profiler(&mut self, start_profiler: &Path) -> &mut Self
pub fn start(&mut self, start: bool) -> &mut Self
pub fn startservice(&mut self, startservice: bool) -> &mut Self
pub fn force_stop(&mut self, force_stop: &Path) -> &mut Self
pub fn kill(&mut self, kill: &Path) -> &mut Self
pub fn kill_all(&mut self, kill_all: bool) -> &mut Self
pub fn broadcast(&mut self, broadcast: String) -> &mut Self
pub fn instrument(&mut self, instrument: bool) -> &mut Self
pub fn no_window_animation(&mut self, no_window_animation: bool) -> &mut Self
pub fn profile_start(&mut self, profile_start: &Path) -> &mut Self
pub fn profile_stop(&mut self, profile_stop: bool) -> &mut Self
pub fn dumpheap(&mut self, dumpheap: &Path) -> &mut Self
pub fn set_debug_app(&mut self, set_debug_app: &Path) -> &mut Self
pub fn persistent(&mut self, persistent: bool) -> &mut Self
pub fn clear_debug_app(&mut self, clear_debug_app: bool) -> &mut Self
pub fn monitor(&mut self, monitor: bool) -> &mut Self
pub fn gdb(&mut self, gdb: bool) -> &mut Self
pub fn screen_compat( &mut self, screen_compat: ScreenCompatibilityMode, ) -> &mut Self
pub fn display_size(&mut self, display_size: String) -> &mut Self
pub fn display_density(&mut self, display_density: String) -> &mut Self
pub fn to_uri(&mut self, to_uri: bool) -> &mut Self
pub fn to_intent_uri(&mut self, to_intent_uri: bool) -> &mut Self
pub fn run(&self) -> Result<()>
Trait Implementationsยง
Sourceยงimpl Clone for AdbShellAm
impl Clone for AdbShellAm
Sourceยงfn clone(&self) -> AdbShellAm
fn clone(&self) -> AdbShellAm
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSourceยงimpl Default for AdbShellAm
impl Default for AdbShellAm
Sourceยงfn default() -> AdbShellAm
fn default() -> AdbShellAm
Returns the โdefault valueโ for a type. Read more
Auto Trait Implementationsยง
impl Freeze for AdbShellAm
impl RefUnwindSafe for AdbShellAm
impl Send for AdbShellAm
impl Sync for AdbShellAm
impl Unpin for AdbShellAm
impl UnsafeUnpin for AdbShellAm
impl UnwindSafe for AdbShellAm
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more