#[repr(C)]pub enum CaSet {
GLOBAL_ROOTS = 0,
}
Expand description
Enumeration of values.
Since this enum’s variants do not hold data, we can easily define them them as #[repr(C)]
which helps with FFI.
Variants§
GLOBAL_ROOTS = 0
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CaSet
impl<'de> Deserialize<'de> for CaSet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for CaSet
impl Ord for CaSet
Source§impl PartialOrd for CaSet
impl PartialOrd for CaSet
impl Copy for CaSet
impl Eq for CaSet
impl StructuralPartialEq for CaSet
Auto Trait Implementations§
impl Freeze for CaSet
impl RefUnwindSafe for CaSet
impl Send for CaSet
impl Sync for CaSet
impl Unpin for CaSet
impl UnwindSafe for CaSet
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