Struct sshpuffin::protocol::SshProtocolBehavior
source · pub struct SshProtocolBehavior {}
Trait Implementations§
source§impl Clone for SshProtocolBehavior
impl Clone for SshProtocolBehavior
source§fn clone(&self) -> SshProtocolBehavior
fn clone(&self) -> SshProtocolBehavior
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 Debug for SshProtocolBehavior
impl Debug for SshProtocolBehavior
source§impl PartialEq for SshProtocolBehavior
impl PartialEq for SshProtocolBehavior
source§impl ProtocolBehavior for SshProtocolBehavior
impl ProtocolBehavior for SshProtocolBehavior
type Claim = SshClaim
type OpaqueProtocolMessage = RawSshMessage
type OpaqueProtocolMessageFlight = RawSshMessageFlight
type ProtocolMessage = SshMessage
type ProtocolMessageFlight = SshMessageFlight
type ProtocolTypes = SshProtocolTypes
type SecurityViolationPolicy = SshSecurityViolationPolicy
source§fn create_corpus() -> Vec<(Trace<Self::ProtocolTypes>, &'static str)>
fn create_corpus() -> Vec<(Trace<Self::ProtocolTypes>, &'static str)>
Creates a sane initial seed corpus.
source§impl Put<SshProtocolBehavior> for LibSSL
impl Put<SshProtocolBehavior> for LibSSL
source§fn progress(&mut self) -> Result<(), Error>
fn progress(&mut self) -> Result<(), Error>
Process incoming buffer, internal progress, can fill in the output buffer
fn descriptor(&self) -> &AgentDescriptor
source§fn describe_state(&self) -> &str
fn describe_state(&self) -> &str
Returns a textual representation of the state in which self is
source§fn is_state_successful(&self) -> bool
fn is_state_successful(&self) -> bool
Checks whether the Put is in a good state
source§impl Stream<SshProtocolBehavior> for LibSSL
impl Stream<SshProtocolBehavior> for LibSSL
fn add_to_inbound(&mut self, result: &RawSshMessageFlight)
source§fn take_message_from_outbound(
&mut self,
) -> Result<Option<RawSshMessageFlight>, Error>
fn take_message_from_outbound( &mut self, ) -> Result<Option<RawSshMessageFlight>, Error>
Takes a single TLS message from the outbound channel
impl StructuralPartialEq for SshProtocolBehavior
Auto Trait Implementations§
impl Freeze for SshProtocolBehavior
impl RefUnwindSafe for SshProtocolBehavior
impl Send for SshProtocolBehavior
impl Sync for SshProtocolBehavior
impl Unpin for SshProtocolBehavior
impl UnwindSafe for SshProtocolBehavior
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.