pub struct CPut {
name: String,
harness_version: String,
library_version: String,
capabilities: HashSet<String>,
interface: TLS_PUT_INTERFACE,
}Fields§
§name: String§harness_version: String§library_version: String§capabilities: HashSet<String>§interface: TLS_PUT_INTERFACEImplementations§
Trait Implementations§
source§impl Factory<TLSProtocolBehavior> for CPut
impl Factory<TLSProtocolBehavior> for CPut
fn create( &self, agent_descriptor: &AgentDescriptor<TLSDescriptorConfig>, claims: &GlobalClaimList<<TLSProtocolBehavior as ProtocolBehavior>::Claim>, options: &PutOptions, ) -> Result<Box<dyn Put<TLSProtocolBehavior>>, Error>
fn name(&self) -> String
fn versions(&self) -> Vec<(String, String)>
fn rng_reseed(&self)
fn supports(&self, capability: &str) -> bool
fn clone_factory(&self) -> Box<dyn Factory<TLSProtocolBehavior>>
Auto Trait Implementations§
impl Freeze for CPut
impl RefUnwindSafe for CPut
impl Send for CPut
impl Sync for CPut
impl Unpin for CPut
impl UnwindSafe for CPut
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.