pub struct StartData<W: Write> {
pub snaplen: u32,
pub writers: Vec<W>,
}
Expand description
Defines start operation data.
Fields§
§snaplen: u32
§writers: Vec<W>
Trait Implementations§
Source§impl<W: Write> DefaultEncoding for StartData<W>
impl<W: Write> DefaultEncoding for StartData<W>
Source§type Encoding = TableEncoder
type Encoding = TableEncoder
The encoding to use for the serialization. Read more
Source§impl<'encoding, W> StructDecodeMetadata<'encoding, Resource> for StartData<W>
impl<'encoding, W> StructDecodeMetadata<'encoding, Resource> for StartData<W>
Source§const DECODERS: &'static [ErasedDecoderEntry]
const DECODERS: &'static [ErasedDecoderEntry]
The list of decoder vtables.
Source§impl<W> StructEncodeMetadata<Resource> for StartData<W>
impl<W> StructEncodeMetadata<Resource> for StartData<W>
Source§const ENCODERS: &'static [ErasedEncoderEntry]
const ENCODERS: &'static [ErasedEncoderEntry]
The list of encoder vtables.
Auto Trait Implementations§
impl<W> Freeze for StartData<W>
impl<W> RefUnwindSafe for StartData<W>where
W: RefUnwindSafe,
impl<W> Send for StartData<W>where
W: Send,
impl<W> Sync for StartData<W>where
W: Sync,
impl<W> Unpin for StartData<W>where
W: Unpin,
impl<W> UnwindSafe for StartData<W>where
W: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> SerializeMessage for Twhere
T: 'static + MeshPayload + Send,
impl<T> SerializeMessage for Twhere
T: 'static + MeshPayload + Send,
Source§fn compute_message_size(&mut self, sizer: MessageSizer<'_>)
fn compute_message_size(&mut self, sizer: MessageSizer<'_>)
Computes the message size, as in
MessageEncode::compute_message_size
.Source§fn write_message(self, writer: MessageWriter<'_, '_, Resource>)
fn write_message(self, writer: MessageWriter<'_, '_, Resource>)
Writes the message, as in
MessageEncode::write_message
.Source§fn extract(self) -> <T as SerializeMessage>::Concrete
fn extract(self) -> <T as SerializeMessage>::Concrete
Extract the concrete message.