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§
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
👎Deprecated: Since 2.60
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, )
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)
👎Deprecated: Since 2.60
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
fn connect_advertised_protocols_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_certificate_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_database_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_interaction_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_negotiated_protocol_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_peer_certificate_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_peer_certificate_errors_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_rehandshake_mode_notify<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 2.60
fn connect_require_close_notify_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.