pub struct BatTransportStream<'a> {
pub transport_stream_id: u16,
pub original_network_id: u16,
pub descriptors: DescriptorLoop<'a>,
}Expand description
One transport-stream entry inside the BAT transport_stream_loop.
Fields§
§transport_stream_id: u16transport_stream_id of the described TS.
original_network_id: u16original_network_id of the described TS.
descriptors: DescriptorLoop<'a>Raw descriptor bytes for this transport stream.
Per-TS descriptor loop. Serializes as the typed descriptor sequence;
.raw() yields the wire bytes.
Trait Implementations§
Source§impl<'a> Clone for BatTransportStream<'a>
impl<'a> Clone for BatTransportStream<'a>
Source§fn clone(&self) -> BatTransportStream<'a>
fn clone(&self) -> BatTransportStream<'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 BatTransportStream<'a>
impl<'a> Debug for BatTransportStream<'a>
impl<'a> Eq for BatTransportStream<'a>
Source§impl<'a> PartialEq for BatTransportStream<'a>
impl<'a> PartialEq for BatTransportStream<'a>
Source§fn eq(&self, other: &BatTransportStream<'a>) -> bool
fn eq(&self, other: &BatTransportStream<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for BatTransportStream<'a>
impl<'a> Serialize for BatTransportStream<'a>
impl<'a> StructuralPartialEq for BatTransportStream<'a>
Source§impl<'a> Yokeable<'a> for BatTransportStream<'static>
impl<'a> Yokeable<'a> for BatTransportStream<'static>
Source§type Output = BatTransportStream<'a>
type Output = BatTransportStream<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for BatTransportStream<'a>
impl<'a> RefUnwindSafe for BatTransportStream<'a>
impl<'a> Send for BatTransportStream<'a>
impl<'a> Sync for BatTransportStream<'a>
impl<'a> Unpin for BatTransportStream<'a>
impl<'a> UnsafeUnpin for BatTransportStream<'a>
impl<'a> UnwindSafe for BatTransportStream<'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