pub struct AdbPush { /* private fields */ }Implementationsยง
Sourceยงimpl AdbPush
impl AdbPush
pub fn new() -> Self
Sourcepub fn sync(&mut self, sync: &Path) -> &mut Self
pub fn sync(&mut self, sync: &Path) -> &mut Self
Only push files that are newer on the host than the device
Sourcepub fn n(&mut self, n: bool) -> &mut Self
pub fn n(&mut self, n: bool) -> &mut Self
Dry run: push files to device without storing to the filesystem
Sourcepub fn z_enable_compression(&mut self, z_enable_compression: bool) -> &mut Self
pub fn z_enable_compression(&mut self, z_enable_compression: bool) -> &mut Self
Enable compression with a specified algorithm (any, none, brotli)
Sourcepub fn z_disable_compression(
&mut self,
z_disable_compression: bool,
) -> &mut Self
pub fn z_disable_compression( &mut self, z_disable_compression: bool, ) -> &mut Self
Disable compression
pub fn run(&self) -> Result<()>
Trait Implementationsยง
Auto Trait Implementationsยง
impl Freeze for AdbPush
impl RefUnwindSafe for AdbPush
impl Send for AdbPush
impl Sync for AdbPush
impl Unpin for AdbPush
impl UnsafeUnpin for AdbPush
impl UnwindSafe for AdbPush
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