docs.rs failed to build adb-rust-0.2.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
adb-rust-0.2.3
A Simple ADB Client Written in Rust
===========================
ADBCmd can execute commands synchronously or asynchronously using callback function closures.
Currently, this library is primarily used for invoking "cmd" commands in Rust, providing a variety of practical APIs.
- new: Creates an instance of ADBCmd, returning an ADBCmd instance.
- create_adb_cmd: Creates an asynchronous
Command
instance based ontokio::process::Command
, returning the instance ofCommand
. - run_async: Executes an asynchronous command by passing callback parameters to get the
Command
output in real-time. - run: Executes a synchronous command (based on
std::process::Command
) to obtain the output of the current synchronous command, returning aResult<String, String>
. - get_file_path: Gets the file path of the given path; if it does not exist, it returns an error message, returning a
Result<String, String>
.
Usage
[]
= { = "1.0", = ["full"] }
="0.2.1"
- Invocation
use ;
API