pub struct AdsNotificationStream {
pub length: u32,
pub stamps: u32,
pub ads_stamp_headers: Vec<AdsStampHeader>,
pub command_id: CommandID,
}Fields§
§length: u32§stamps: u32§ads_stamp_headers: Vec<AdsStampHeader>§command_id: CommandIDImplementations§
Source§impl AdsNotificationStream
impl AdsNotificationStream
pub fn new( length: u32, stamps: u32, ads_stamp_headers: Vec<AdsStampHeader>, ) -> Self
pub fn stream_len(&self) -> usize
Trait Implementations§
Source§impl Clone for AdsNotificationStream
impl Clone for AdsNotificationStream
Source§fn clone(&self) -> AdsNotificationStream
fn clone(&self) -> AdsNotificationStream
Returns a duplicate of the value. Read more
1.0.0 · 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 AdsNotificationStream
impl Debug for AdsNotificationStream
Source§impl From<AdsNotificationStream> for Response
impl From<AdsNotificationStream> for Response
Source§fn from(response: AdsNotificationStream) -> Self
fn from(response: AdsNotificationStream) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AdsNotificationStream
impl PartialEq for AdsNotificationStream
Source§impl ReadFrom for AdsNotificationStream
impl ReadFrom for AdsNotificationStream
Source§impl TryInto<AdsNotificationStream> for Response
impl TryInto<AdsNotificationStream> for Response
Source§type Error = TryIntoError
type Error = TryIntoError
The type returned in the event of a conversion error.
Source§impl WriteTo for AdsNotificationStream
impl WriteTo for AdsNotificationStream
impl Eq for AdsNotificationStream
impl StructuralPartialEq for AdsNotificationStream
Auto Trait Implementations§
impl Freeze for AdsNotificationStream
impl RefUnwindSafe for AdsNotificationStream
impl Send for AdsNotificationStream
impl Sync for AdsNotificationStream
impl Unpin for AdsNotificationStream
impl UnwindSafe for AdsNotificationStream
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