pub struct TuneTSReq<'a> {
pub tuning_information_message: &'a [u8],
}Expand description
TuneTSReq() (Table 19) — host → module: tune to a TS. An absent
TuningInformationMessage (zero following bytes) requests a network disconnect.
Fields§
§tuning_information_message: &'a [u8]TuningInformationMessage — 11 bytes, or empty (= disconnect from network).
Trait Implementations§
impl<'a> Eq for TuneTSReq<'a>
Source§impl Serialize for TuneTSReq<'_>
impl Serialize for TuneTSReq<'_>
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 TuneTSReq<'a>
Auto Trait Implementations§
impl<'a> Freeze for TuneTSReq<'a>
impl<'a> RefUnwindSafe for TuneTSReq<'a>
impl<'a> Send for TuneTSReq<'a>
impl<'a> Sync for TuneTSReq<'a>
impl<'a> Unpin for TuneTSReq<'a>
impl<'a> UnsafeUnpin for TuneTSReq<'a>
impl<'a> UnwindSafe for TuneTSReq<'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