#[non_exhaustive]#[repr(u32)]pub enum cef_ssl_content_status_t {
SSL_CONTENT_NORMAL_CONTENT = 0,
SSL_CONTENT_DISPLAYED_INSECURE_CONTENT = 1,
SSL_CONTENT_RAN_INSECURE_CONTENT = 2,
}Expand description
Supported SSL content status flags. See content/public/common/ssl_status.h for more information.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SSL_CONTENT_NORMAL_CONTENT = 0
SSL_CONTENT_DISPLAYED_INSECURE_CONTENT = 1
SSL_CONTENT_RAN_INSECURE_CONTENT = 2
Trait Implementations§
Source§impl Clone for cef_ssl_content_status_t
impl Clone for cef_ssl_content_status_t
Source§fn clone(&self) -> cef_ssl_content_status_t
fn clone(&self) -> cef_ssl_content_status_t
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 cef_ssl_content_status_t
impl Debug for cef_ssl_content_status_t
Source§impl Hash for cef_ssl_content_status_t
impl Hash for cef_ssl_content_status_t
Source§impl PartialEq for cef_ssl_content_status_t
impl PartialEq for cef_ssl_content_status_t
impl Copy for cef_ssl_content_status_t
impl Eq for cef_ssl_content_status_t
impl StructuralPartialEq for cef_ssl_content_status_t
Auto Trait Implementations§
impl Freeze for cef_ssl_content_status_t
impl RefUnwindSafe for cef_ssl_content_status_t
impl Send for cef_ssl_content_status_t
impl Sync for cef_ssl_content_status_t
impl Unpin for cef_ssl_content_status_t
impl UnwindSafe for cef_ssl_content_status_t
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