Enum cassandra_cpp::SslVerifyFlag
source · [−]pub enum SslVerifyFlag {
NONE,
PEER_CERT,
PEER_IDENTITY,
PEER_IDENTITY_DNS,
}
Expand description
The individual SSL verification levels.
Variants
NONE
PEER_CERT
PEER_IDENTITY
PEER_IDENTITY_DNS
Implementations
sourceimpl SslVerifyFlag
impl SslVerifyFlag
sourcepub fn variants() -> &'static [SslVerifyFlag]
pub fn variants() -> &'static [SslVerifyFlag]
List all the possible values of this enumeration.
Trait Implementations
sourceimpl Clone for SslVerifyFlag
impl Clone for SslVerifyFlag
sourcefn clone(&self) -> SslVerifyFlag
fn clone(&self) -> SslVerifyFlag
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SslVerifyFlag
impl Debug for SslVerifyFlag
sourceimpl Display for SslVerifyFlag
impl Display for SslVerifyFlag
sourceimpl FromStr for SslVerifyFlag
impl FromStr for SslVerifyFlag
sourceimpl Hash for SslVerifyFlag
impl Hash for SslVerifyFlag
sourceimpl PartialEq<SslVerifyFlag> for SslVerifyFlag
impl PartialEq<SslVerifyFlag> for SslVerifyFlag
impl Copy for SslVerifyFlag
impl Eq for SslVerifyFlag
impl StructuralEq for SslVerifyFlag
impl StructuralPartialEq for SslVerifyFlag
Auto Trait Implementations
impl RefUnwindSafe for SslVerifyFlag
impl Send for SslVerifyFlag
impl Sync for SslVerifyFlag
impl Unpin for SslVerifyFlag
impl UnwindSafe for SslVerifyFlag
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more