pub struct AwsLcRsDigest;
Expand description
A digest backend provided by aws-lc-rs
Usage:
use tokio_postgres_generic_rustls::{MakeRustlsConnect, AwsLcRsDigest};
let tls = MakeRustlsConnect::new(rustls_config, AwsLcRsDigest);
let connect_future = tokio_postgres::connect("postgres://username:password@localhost:5432/db", tls);
Trait Implementations§
Source§impl Clone for AwsLcRsDigest
impl Clone for AwsLcRsDigest
Source§fn clone(&self) -> AwsLcRsDigest
fn clone(&self) -> AwsLcRsDigest
Returns a duplicate 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 AwsLcRsDigest
impl Debug for AwsLcRsDigest
Source§impl Default for AwsLcRsDigest
impl Default for AwsLcRsDigest
Source§fn default() -> AwsLcRsDigest
fn default() -> AwsLcRsDigest
Returns the “default value” for a type. Read more
Source§impl DigestImplementation for AwsLcRsDigest
impl DigestImplementation for AwsLcRsDigest
Source§impl Hash for AwsLcRsDigest
impl Hash for AwsLcRsDigest
Source§impl Ord for AwsLcRsDigest
impl Ord for AwsLcRsDigest
Source§fn cmp(&self, other: &AwsLcRsDigest) -> Ordering
fn cmp(&self, other: &AwsLcRsDigest) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AwsLcRsDigest
impl PartialEq for AwsLcRsDigest
Source§impl PartialOrd for AwsLcRsDigest
impl PartialOrd for AwsLcRsDigest
impl Copy for AwsLcRsDigest
impl Eq for AwsLcRsDigest
impl StructuralPartialEq for AwsLcRsDigest
Auto Trait Implementations§
impl Freeze for AwsLcRsDigest
impl RefUnwindSafe for AwsLcRsDigest
impl Send for AwsLcRsDigest
impl Sync for AwsLcRsDigest
impl Unpin for AwsLcRsDigest
impl UnwindSafe for AwsLcRsDigest
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