pub trait CompareCT<T> {
    // Required method
    fn compare_ct(&self, other: &T) -> bool;
}

Required Methods§

source

fn compare_ct(&self, other: &T) -> bool

Implementations on Foreign Types§

source§

impl<'a, T> CompareCT<T> for Cow<'a, [u8]>where T: AsRef<[u8]>,

source§

fn compare_ct(&self, other: &T) -> bool

source§

impl<T> CompareCT<T> for Vec<u8>where T: AsRef<[u8]>,

source§

fn compare_ct(&self, other: &T) -> bool

Implementors§

source§

impl<'a> CompareCT<AString<'a>> for AString<'a>

source§

impl<'a> CompareCT<IString<'a>> for IString<'a>

source§

impl<'a> CompareCT<Literal<'a>> for Literal<'a>