You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The device no longer exists. This can happen if the device is disconnected while the
123
123
/// program is running.
124
124
DeviceNotAvailable,
125
-
/// The device is temporarily busy. This can happen when another application or stream
126
-
/// is using the device. Retrying after a short delay may succeed.
127
-
DeviceBusy,
128
125
/// We called something the C-Layer did not understand
129
126
InvalidArgument,
130
127
/// See the [`BackendSpecificError`] docs for more information about this error variant.
@@ -136,7 +133,6 @@ impl Display for SupportedStreamConfigsError {
136
133
matchself{
137
134
Self::BackendSpecific{ err } => err.fmt(f),
138
135
Self::DeviceNotAvailable => f.write_str("The requested device is no longer available. For example, it has been unplugged."),
139
-
Self::DeviceBusy => f.write_str("The requested device is temporarily busy. Another application or stream may be using it."),
140
136
Self::InvalidArgument => f.write_str("Invalid argument passed to the backend. For example, this happens when trying to read capture capabilities when the device does not support it.")
0 commit comments