pub struct SdpChunk {
pub chunk: ChunkMeta,
pub sdp: String,
}Expand description
One numbered slice of a split offer/answer frame.
Fields§
§chunk: ChunkMetaThis slice’s correlation fields.
sdp: StringThe slice of the sdp this chunk carries.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SdpChunk
impl<'de> Deserialize<'de> for SdpChunk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SdpChunk
impl StructuralPartialEq for SdpChunk
Auto Trait Implementations§
impl Freeze for SdpChunk
impl RefUnwindSafe for SdpChunk
impl Send for SdpChunk
impl Sync for SdpChunk
impl Unpin for SdpChunk
impl UnsafeUnpin for SdpChunk
impl UnwindSafe for SdpChunk
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more