pub struct PortProfile<'a> {
pub receiver_identification: &'a [u8],
pub ports: Vec<PortDescription<'a>>,
}Expand description
Port profile status data (Table 48) — status item 2: a textual receiver
identity and per-port descriptions.
Fields§
§receiver_identification: &'a [u8]receiver_identification — manufacturer/model/version string (DVB SI
Annex A coding).
ports: Vec<PortDescription<'a>>One entry per {in,out} port pair (N entries, consuming the remainder).
Trait Implementations§
Source§impl<'a> Clone for PortProfile<'a>
impl<'a> Clone for PortProfile<'a>
Source§fn clone(&self) -> PortProfile<'a>
fn clone(&self) -> PortProfile<'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 PortProfile<'a>
impl<'a> Debug for PortProfile<'a>
Source§impl<'a> Default for PortProfile<'a>
impl<'a> Default for PortProfile<'a>
Source§fn default() -> PortProfile<'a>
fn default() -> PortProfile<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for PortProfile<'a>
Source§impl<'a> Parse<'a> for PortProfile<'a>
impl<'a> Parse<'a> for PortProfile<'a>
Source§impl<'a> PartialEq for PortProfile<'a>
impl<'a> PartialEq for PortProfile<'a>
Source§impl<'a> Serialize for PortProfile<'a>
Available on crate feature serde only.
impl<'a> Serialize for PortProfile<'a>
Available on crate feature
serde only.Source§impl Serialize for PortProfile<'_>
impl Serialize for PortProfile<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for PortProfile<'a>
Auto Trait Implementations§
impl<'a> Freeze for PortProfile<'a>
impl<'a> RefUnwindSafe for PortProfile<'a>
impl<'a> Send for PortProfile<'a>
impl<'a> Sync for PortProfile<'a>
impl<'a> Unpin for PortProfile<'a>
impl<'a> UnsafeUnpin for PortProfile<'a>
impl<'a> UnwindSafe for PortProfile<'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