Trait sourceview5::prelude::TlsConnectionExt

source ·
pub trait TlsConnectionExt: IsA<TlsConnection> + Sealed + 'static {
Show 29 methods // Provided methods fn emit_accept_certificate( &self, peer_cert: &impl IsA<TlsCertificate>, errors: TlsCertificateFlags, ) -> bool { ... } fn certificate(&self) -> Option<TlsCertificate> { ... } fn database(&self) -> Option<TlsDatabase> { ... } fn interaction(&self) -> Option<TlsInteraction> { ... } fn negotiated_protocol(&self) -> Option<GString> { ... } fn peer_certificate(&self) -> Option<TlsCertificate> { ... } fn peer_certificate_errors(&self) -> TlsCertificateFlags { ... } fn rehandshake_mode(&self) -> TlsRehandshakeMode { ... } fn requires_close_notify(&self) -> bool { ... } fn handshake( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(), Error> { ... } fn handshake_async<P>( &self, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, ) where P: FnOnce(Result<(), Error>) + 'static { ... } fn handshake_future( &self, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... } fn set_certificate(&self, certificate: &impl IsA<TlsCertificate>) { ... } fn set_database(&self, database: Option<&impl IsA<TlsDatabase>>) { ... } fn set_interaction(&self, interaction: Option<&impl IsA<TlsInteraction>>) { ... } fn set_rehandshake_mode(&self, mode: TlsRehandshakeMode) { ... } fn set_require_close_notify(&self, require_close_notify: bool) { ... } fn advertised_protocols(&self) -> Vec<GString> { ... } fn base_io_stream(&self) -> Option<IOStream> { ... } fn connect_accept_certificate<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self, &TlsCertificate, TlsCertificateFlags) -> bool + 'static { ... } fn connect_advertised_protocols_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_certificate_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_database_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_interaction_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_negotiated_protocol_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_peer_certificate_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_peer_certificate_errors_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_rehandshake_mode_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_require_close_notify_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn emit_accept_certificate( &self, peer_cert: &impl IsA<TlsCertificate>, errors: TlsCertificateFlags, ) -> bool

source

fn certificate(&self) -> Option<TlsCertificate>

source

fn database(&self) -> Option<TlsDatabase>

source

fn interaction(&self) -> Option<TlsInteraction>

source

fn negotiated_protocol(&self) -> Option<GString>

source

fn peer_certificate(&self) -> Option<TlsCertificate>

source

fn peer_certificate_errors(&self) -> TlsCertificateFlags

source

fn rehandshake_mode(&self) -> TlsRehandshakeMode

👎Deprecated: Since 2.60
source

fn requires_close_notify(&self) -> bool

source

fn handshake( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(), Error>

source

fn handshake_async<P>( &self, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
where P: FnOnce(Result<(), Error>) + 'static,

source

fn handshake_future( &self, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>

source

fn set_certificate(&self, certificate: &impl IsA<TlsCertificate>)

source

fn set_database(&self, database: Option<&impl IsA<TlsDatabase>>)

source

fn set_interaction(&self, interaction: Option<&impl IsA<TlsInteraction>>)

source

fn set_rehandshake_mode(&self, mode: TlsRehandshakeMode)

👎Deprecated: Since 2.60
source

fn set_require_close_notify(&self, require_close_notify: bool)

source

fn advertised_protocols(&self) -> Vec<GString>

source

fn base_io_stream(&self) -> Option<IOStream>

source

fn connect_accept_certificate<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &TlsCertificate, TlsCertificateFlags) -> bool + 'static,

source

fn connect_advertised_protocols_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_certificate_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_database_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_interaction_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_negotiated_protocol_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_peer_certificate_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_peer_certificate_errors_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

source

fn connect_rehandshake_mode_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

👎Deprecated: Since 2.60
source

fn connect_require_close_notify_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

Object Safety§

This trait is not object safe.

Implementors§