Update serde attrs in call::candidates
This commit is contained in:
parent
d619185a72
commit
83e1ed9129
@ -26,15 +26,14 @@ ruma_event! {
|
|||||||
|
|
||||||
/// An ICE (Interactive Connectivity Establishment) candidate.
|
/// An ICE (Interactive Connectivity Establishment) candidate.
|
||||||
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
|
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct Candidate {
|
pub struct Candidate {
|
||||||
/// The SDP "a" line of the candidate.
|
/// The SDP "a" line of the candidate.
|
||||||
pub candidate: String,
|
pub candidate: String,
|
||||||
|
|
||||||
/// The SDP media type this candidate is intended for.
|
/// The SDP media type this candidate is intended for.
|
||||||
#[serde(rename = "sdpMid")]
|
|
||||||
pub sdp_mid: String,
|
pub sdp_mid: String,
|
||||||
|
|
||||||
/// The index of the SDP "m" line this candidate is intended for.
|
/// The index of the SDP "m" line this candidate is intended for.
|
||||||
#[serde(rename = "sdpMLineIndex")]
|
|
||||||
pub sdp_m_line_index: UInt,
|
pub sdp_m_line_index: UInt,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user