Skip to content

Commit

Permalink
fixup: make SoB field pub
Browse files Browse the repository at this point in the history
  • Loading branch information
LPardue committed Mar 10, 2025
1 parent fd08cd5 commit 313641c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions qlog/src/events/moqt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,16 @@ impl Default for MOQTParameter {
#[serde_with::skip_serializing_none]
#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, Debug)]
pub struct MOQTStringOrBytes {
value: Option<String>,
value_bytes: Option<String>,
pub value: Option<String>,
pub value_bytes: Option<String>,
}

#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, Debug)]
pub struct MOQTExtensionHeader {
header_type: u64,
header_value: Option<u64>,
header_length: Option<u64>,
payload: Option<RawInfo>,
pub header_type: u64,
pub header_value: Option<u64>,
pub header_length: Option<u64>,
pub payload: Option<RawInfo>,
}

#[serde_with::skip_serializing_none]
Expand Down

0 comments on commit 313641c

Please sign in to comment.