[][src]Struct psk_client::PskClient

pub struct PskClient { /* fields omitted */ }

The PSK client, this contains all the required information to generate and return a connection to a TCP socket over SSL where PSK negotiation has taken place.

Implementations

impl PskClient[src]

pub fn builder<'a, H: ToSocketAddrs>(host: H) -> PskClientBuilder<'a, H>[src]

Returns a new instance of a PskBuilder for the given host.

use psk_client::PskClient;
let builder = PskClient::builder("127.0.0.1:4433");

pub fn connect(&self) -> Result<SslStream<TcpStream>, PskClientError>[src]

Returns an SSL stream which wraps a TCP stream, does not consume the instance of PskClient thus that it may be called multiple times.

use psk_client::PskClient;
use std::io::Write;

if let Ok(client) = PskClient::builder("127.0.0.1:4433")
    .identity("some-client")
    .key("1A2B3C4D")
    .build()
{
    if let Ok(mut connection) = client.connect() {
        connection.write_all(b"Hello, World!").unwrap();
    }
}

Trait Implementations

impl Clone for PskClient[src]

impl Debug for PskClient[src]

impl PartialEq<PskClient> for PskClient[src]

impl StructuralPartialEq for PskClient[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.