prefer unimplemented!
for unimplemented functions
This commit is contained in:
parent
d45502a43e
commit
1561ae2e80
@ -31,8 +31,6 @@ impl Command for Outputs {
|
||||
fn parse_response(
|
||||
parts: ResponseAttributes<'_>,
|
||||
) -> Result<Self::Response, ResponseParserError> {
|
||||
todo!()
|
||||
// debug_assert!(parts.is_empty());
|
||||
// Ok(())
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ impl Command for GetVol {
|
||||
fn parse_response(
|
||||
parts: ResponseAttributes<'_>,
|
||||
) -> Result<Self::Response, ResponseParserError> {
|
||||
todo!()
|
||||
unimplemented!()
|
||||
// let volume = get_property!(parts, Volume, "volume");
|
||||
// let volume = match parts.get("volume") {
|
||||
// Some(GenericResponseValue::Volume(v)) => *v,
|
||||
|
@ -22,6 +22,6 @@ impl Command for CurrentSong {
|
||||
fn parse_response(
|
||||
parts: ResponseAttributes<'_>,
|
||||
) -> Result<Self::Response, ResponseParserError> {
|
||||
todo!()
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user