Struct puffin::trace::OutputAction
source · pub struct OutputAction<PT> {
phantom: PhantomData<PT>,
}
Expand description
Advance the Agent
’s state and process the produced output.
The OutputAction
first forwards the state machine and then extracts knowledge from the TLS
messages produced by the underlying stream by calling take_message_from_outbound(...)
. An
output action is automatically called after each input step.
Fields§
§phantom: PhantomData<PT>
Implementations§
source§impl<PT: ProtocolTypes> OutputAction<PT>
impl<PT: ProtocolTypes> OutputAction<PT>
Trait Implementations§
source§impl<PT: Clone> Clone for OutputAction<PT>
impl<PT: Clone> Clone for OutputAction<PT>
source§fn clone(&self) -> OutputAction<PT>
fn clone(&self) -> OutputAction<PT>
Returns a copy 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<PT: Debug> Debug for OutputAction<PT>
impl<PT: Debug> Debug for OutputAction<PT>
source§impl<'de, PT> Deserialize<'de> for OutputAction<PT>
impl<'de, PT> Deserialize<'de> for OutputAction<PT>
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
source§impl<PT: ProtocolTypes> Display for OutputAction<PT>
impl<PT: ProtocolTypes> Display for OutputAction<PT>
source§impl<PT: Hash> Hash for OutputAction<PT>
impl<PT: Hash> Hash for OutputAction<PT>
Auto Trait Implementations§
impl<PT> Freeze for OutputAction<PT>
impl<PT> RefUnwindSafe for OutputAction<PT>where
PT: RefUnwindSafe,
impl<PT> Send for OutputAction<PT>where
PT: Send,
impl<PT> Sync for OutputAction<PT>where
PT: Sync,
impl<PT> Unpin for OutputAction<PT>where
PT: Unpin,
impl<PT> UnwindSafe for OutputAction<PT>where
PT: 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> CloneAny for T
impl<T> CloneAny for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.