pub struct StreamMessage<'a> {
pub object_key: &'a [u8],
pub stream_info: DsmStreamInfo<'a>,
pub object_info_extra: &'a [u8],
pub service_context: Vec<ServiceContext<'a>>,
pub taps: Vec<Tap<'a>>,
}Expand description
BIOP::StreamMessage — TR 101 202 §4.7.4.3, Table 4.11.
objectKind = "str\0".
Fields§
§object_key: &'a [u8]objectKey_data.
stream_info: DsmStreamInfo<'a>DSM::Stream::Info_T parsed from the head of objectInfo.
object_info_extra: &'a [u8]Trailing objectInfo bytes after Info_T (may be empty).
service_context: Vec<ServiceContext<'a>>Parsed serviceContextList entries.
taps: Vec<Tap<'a>>Tap entries from the message body.
Implementations§
Source§impl<'a> StreamMessage<'a>
impl<'a> StreamMessage<'a>
Sourcepub fn serialized_len_total(&self) -> usize
pub fn serialized_len_total(&self) -> usize
Total serialized length including the 12-byte BIOP header.
Trait Implementations§
Source§impl<'a> Clone for StreamMessage<'a>
impl<'a> Clone for StreamMessage<'a>
Source§fn clone(&self) -> StreamMessage<'a>
fn clone(&self) -> StreamMessage<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for StreamMessage<'a>
impl<'a> Debug for StreamMessage<'a>
impl<'a> Eq for StreamMessage<'a>
Source§impl<'a> PartialEq for StreamMessage<'a>
impl<'a> PartialEq for StreamMessage<'a>
Source§fn eq(&self, other: &StreamMessage<'a>) -> bool
fn eq(&self, other: &StreamMessage<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for StreamMessage<'a>
impl<'a> Serialize for StreamMessage<'a>
impl<'a> StructuralPartialEq for StreamMessage<'a>
Auto Trait Implementations§
impl<'a> Freeze for StreamMessage<'a>
impl<'a> RefUnwindSafe for StreamMessage<'a>
impl<'a> Send for StreamMessage<'a>
impl<'a> Sync for StreamMessage<'a>
impl<'a> Unpin for StreamMessage<'a>
impl<'a> UnsafeUnpin for StreamMessage<'a>
impl<'a> UnwindSafe for StreamMessage<'a>
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