diff --git a/src/commands.rs b/src/commands.rs index 38b2d0f1..5b6f26aa 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -48,7 +48,7 @@ use thiserror::Error; use tokio::io::{AsyncBufReadExt, AsyncRead, AsyncWrite, AsyncWriteExt, BufReader}; /// A trait modelling a single MPD command request. -pub trait CommandRequest +pub(crate) trait CommandRequest where Self: Sized, { @@ -102,7 +102,7 @@ where } /// A trait modelling a single MPD command response. -pub trait CommandResponse +pub(crate) trait CommandResponse where Self: Sized, {