Skip to content

Commit

Permalink
ensure types expose a debug implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
ystreet committed Nov 14, 2024
1 parent 910adce commit eb852cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/edit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use crate::{RtpPacket, RtpParseError, RtpWriteError};

/// Mutable parsed RTP packet for editing of some fields.
#[derive(Debug)]
#[repr(transparent)]
pub struct RtpPacketMut<'a> {
data: &'a mut [u8],
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// SPDX-License-Identifier: MIT OR Apache-2.0

#![deny(missing_debug_implementations)]

mod builder;
mod edit;
mod packet;
Expand Down

0 comments on commit eb852cb

Please sign in to comment.