Struct android_tools::adb::AdbPush
source · [−]pub struct AdbPush { /* private fields */ }
Implementations
sourceimpl 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 RefUnwindSafe for AdbPush
impl Send for AdbPush
impl Sync for AdbPush
impl Unpin for AdbPush
impl UnwindSafe for AdbPush
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more