@@ -22,7 +22,7 @@ pub struct BackendSpecificError {
2222 description : String
2323
2424 fn new(description : String ) -> BackendSpecificError
25- } derive (Show , Eq )
25+ } derive (Debug , Eq )
2626
2727///|
2828pub fn BackendSpecificError ::new(description : String ) -> BackendSpecificError {
@@ -46,7 +46,7 @@ pub suberror DefaultStreamConfigError {
4646 DeviceBusy
4747 StreamTypeNotSupported
4848 BackendSpecific (BackendSpecificError )
49- } derive (Show , Eq )
49+ } derive (Debug , Eq )
5050
5151///|
5252pub fn DefaultStreamConfigError ::to_string(
@@ -70,7 +70,7 @@ pub suberror SupportedStreamConfigsError {
7070 DeviceBusy
7171 InvalidArgument
7272 BackendSpecific (BackendSpecificError )
73- } derive (Show , Eq )
73+ } derive (Debug , Eq )
7474
7575///|
7676pub fn SupportedStreamConfigsError ::to_string(
@@ -91,7 +91,7 @@ pub fn SupportedStreamConfigsError::to_string(
9191/// An error that might occur while attempting to enumerate devices.
9292pub suberror DevicesError {
9393 BackendSpecific (BackendSpecificError )
94- } derive (Show , Eq )
94+ } derive (Debug , Eq )
9595
9696///|
9797pub fn DevicesError ::to_string(self : DevicesError ) -> String {
@@ -104,7 +104,7 @@ pub fn DevicesError::to_string(self : DevicesError) -> String {
104104/// An error that may occur while attempting to retrieve a device name.
105105pub suberror DeviceNameError {
106106 BackendSpecific (BackendSpecificError )
107- } derive (Show , Eq )
107+ } derive (Debug , Eq )
108108
109109///|
110110pub fn DeviceNameError ::to_string(self : DeviceNameError ) -> String {
@@ -122,7 +122,7 @@ pub suberror BuildStreamError {
122122 InvalidArgument
123123 StreamIdOverflow
124124 BackendSpecific (BackendSpecificError )
125- } derive (Show , Eq )
125+ } derive (Debug , Eq )
126126
127127///|
128128pub fn BuildStreamError ::to_string(self : BuildStreamError ) -> String {
@@ -145,7 +145,7 @@ pub fn BuildStreamError::to_string(self : BuildStreamError) -> String {
145145pub suberror PlayStreamError {
146146 DeviceNotAvailable
147147 BackendSpecific (BackendSpecificError )
148- } derive (Show , Eq )
148+ } derive (Debug , Eq )
149149
150150///|
151151pub fn PlayStreamError ::to_string(self : PlayStreamError ) -> String {
@@ -160,7 +160,7 @@ pub fn PlayStreamError::to_string(self : PlayStreamError) -> String {
160160pub suberror PauseStreamError {
161161 DeviceNotAvailable
162162 BackendSpecific (BackendSpecificError )
163- } derive (Show , Eq )
163+ } derive (Debug , Eq )
164164
165165///|
166166pub fn PauseStreamError ::to_string(self : PauseStreamError ) -> String {
@@ -177,7 +177,7 @@ pub suberror StreamError {
177177 StreamInvalidated
178178 BufferUnderrun
179179 BackendSpecific (BackendSpecificError )
180- } derive (Show , Eq )
180+ } derive (Debug , Eq )
181181
182182///|
183183pub fn StreamError ::to_string(self : StreamError ) -> String {
0 commit comments