1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//! USB transport backend for MTP
//!
//! ## Important Items
//!
//! Be sure to check out the docs of the following items:
//!
//! * [`device_list()`]
//! * [`Device`]
//! * [`DeviceHandle`]
//!
//! ## Usage
//!
//! This is a simple program that will find all connected MTP-eligible devices and print out their
//! storage devices.
//!
//! ```rust,no_run
//! use futures::stream::StreamExt;
//! use mtp::high_level::storages::SessionStorageExt;
//! use mtp::usb::device_list;
//!
//! # #[tokio::main]
//! # async fn main() -> mtp::usb::error::Result<()> {
//! let mut all_mtp_devices = device_list().await?;
//! while let Some(maybe_device) = all_mtp_devices.next().await {
//! let device = maybe_device?;
//!
//! println!(
//! "Storages for device '{:?}':",
//! device.info().product_string()
//! );
//! let mut session = device.open().await?;
//! let all_storages = session.storages().await?;
//!
//! for storage in all_storages {
//! println!(
//! "{} ({}/{} bytes free)",
//! storage.description.unwrap_or(String::from("Unnamed")),
//! storage.free_space,
//! storage.max_capacity
//! )
//! }
//! }
//! # Ok(()) }
//! ```
pub use *;
pub use *;
use HashSet;
use LazyLock;
use DeviceFlags;
static WELL_KNOWN_DEVICE_DESCRIPTORS: =
new;
/// A USB device descriptor.
///
/// This struct is used to identify MTP eligible devices.