Skip to content

Commit

Permalink
fix: hide some private types
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Leadbetter committed May 8, 2024
1 parent 7881cc1 commit 1604a28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/flex_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ pub use set_key_signature::{SetKeySignature, SharpsFlats as SetKeySignatureSharp
pub use set_metronome::*;
pub use set_tempo::*;
pub use set_time_signature::*;
pub use tonic::*;
pub use tonic::Tonic;
pub use unknown_metadata_text::*;
pub use unknown_performance_text::*;

Expand Down Expand Up @@ -898,7 +898,7 @@ pub trait FlexDataMessage<B: crate::buffer::Ump>: crate::traits::Data<B> {
}
}

pub struct StatusProperty<const STATUS: u8>;
struct StatusProperty<const STATUS: u8>;

impl<const STATUS: u8, B: Ump> Property<B> for StatusProperty<STATUS> {
type Type = ();
Expand Down Expand Up @@ -936,7 +936,7 @@ impl<const STATUS: u8, B: Ump + BufferMut> WriteProperty<B> for StatusProperty<S
}
}

pub struct BankProperty<const BANK: u8>;
struct BankProperty<const BANK: u8>;

impl<const BANK: u8, B: Ump> Property<B> for BankProperty<BANK> {
type Type = ();
Expand Down

0 comments on commit 1604a28

Please sign in to comment.