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 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