pub struct ServiceMoveDescriptor {
pub new_original_network_id: u16,
pub new_transport_stream_id: u16,
pub new_service_id: u16,
}Expand description
Service Move Descriptor (tag 0x60).
Fields§
§new_original_network_id: u16original_network_id of the service’s new location.
new_transport_stream_id: u16transport_stream_id of the service’s new location.
new_service_id: u16service_id of the service at its new location.
Trait Implementations§
Source§impl Clone for ServiceMoveDescriptor
impl Clone for ServiceMoveDescriptor
Source§fn clone(&self) -> ServiceMoveDescriptor
fn clone(&self) -> ServiceMoveDescriptor
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 Debug for ServiceMoveDescriptor
impl Debug for ServiceMoveDescriptor
Source§impl<'a> Descriptor<'a> for ServiceMoveDescriptor
impl<'a> Descriptor<'a> for ServiceMoveDescriptor
Source§impl<'a> DescriptorDef<'a> for ServiceMoveDescriptor
impl<'a> DescriptorDef<'a> for ServiceMoveDescriptor
Source§impl<'de> Deserialize<'de> for ServiceMoveDescriptor
impl<'de> Deserialize<'de> for ServiceMoveDescriptor
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 ServiceMoveDescriptor
Source§impl<'a> From<ServiceMoveDescriptor> for AnyDescriptor<'a>
impl<'a> From<ServiceMoveDescriptor> for AnyDescriptor<'a>
Source§fn from(d: ServiceMoveDescriptor) -> Self
fn from(d: ServiceMoveDescriptor) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for ServiceMoveDescriptor
impl<'a> Parse<'a> for ServiceMoveDescriptor
Source§impl PartialEq for ServiceMoveDescriptor
impl PartialEq for ServiceMoveDescriptor
Source§fn eq(&self, other: &ServiceMoveDescriptor) -> bool
fn eq(&self, other: &ServiceMoveDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceMoveDescriptor
impl Serialize for ServiceMoveDescriptor
Source§impl Serialize for ServiceMoveDescriptor
impl Serialize for ServiceMoveDescriptor
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 StructuralPartialEq for ServiceMoveDescriptor
Auto Trait Implementations§
impl Freeze for ServiceMoveDescriptor
impl RefUnwindSafe for ServiceMoveDescriptor
impl Send for ServiceMoveDescriptor
impl Sync for ServiceMoveDescriptor
impl Unpin for ServiceMoveDescriptor
impl UnsafeUnpin for ServiceMoveDescriptor
impl UnwindSafe for ServiceMoveDescriptor
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