Struct openssl::cms::CMSOptions [−]
pub struct CMSOptions { /* fields omitted */ }
Methods
impl CMSOptions
impl CMSOptions
pub const TEXT: CMSOptions
TEXT: CMSOptions = CMSOptions{bits: ffi::CMS_TEXT,}
pub const CMS_NOCERTS: CMSOptions
CMS_NOCERTS: CMSOptions = CMSOptions{bits: ffi::CMS_NOCERTS,}
pub const NO_CONTENT_VERIFY: CMSOptions
NO_CONTENT_VERIFY: CMSOptions = CMSOptions{bits: ffi::CMS_NO_CONTENT_VERIFY,}
pub const NO_ATTR_VERIFY: CMSOptions
NO_ATTR_VERIFY: CMSOptions = CMSOptions{bits: ffi::CMS_NO_ATTR_VERIFY,}
pub const NOSIGS: CMSOptions
NOSIGS: CMSOptions = CMSOptions{bits: ffi::CMS_NOSIGS,}
pub const NOINTERN: CMSOptions
NOINTERN: CMSOptions = CMSOptions{bits: ffi::CMS_NOINTERN,}
pub const NO_SIGNER_CERT_VERIFY: CMSOptions
NO_SIGNER_CERT_VERIFY: CMSOptions = CMSOptions{bits: ffi::CMS_NO_SIGNER_CERT_VERIFY,}
pub const NOVERIFY: CMSOptions
NOVERIFY: CMSOptions = CMSOptions{bits: ffi::CMS_NOVERIFY,}
pub const DETACHED: CMSOptions
DETACHED: CMSOptions = CMSOptions{bits: ffi::CMS_DETACHED,}
pub const BINARY: CMSOptions
BINARY: CMSOptions = CMSOptions{bits: ffi::CMS_BINARY,}
pub const NOATTR: CMSOptions
NOATTR: CMSOptions = CMSOptions{bits: ffi::CMS_NOATTR,}
pub const NOSMIMECAP: CMSOptions
NOSMIMECAP: CMSOptions = CMSOptions{bits: ffi::CMS_NOSMIMECAP,}
pub const NOOLDMIMETYPE: CMSOptions
NOOLDMIMETYPE: CMSOptions = CMSOptions{bits: ffi::CMS_NOOLDMIMETYPE,}
pub const CRLFEOL: CMSOptions
CRLFEOL: CMSOptions = CMSOptions{bits: ffi::CMS_CRLFEOL,}
pub const STREAM: CMSOptions
STREAM: CMSOptions = CMSOptions{bits: ffi::CMS_STREAM,}
pub const NOCRL: CMSOptions
NOCRL: CMSOptions = CMSOptions{bits: ffi::CMS_NOCRL,}
pub const PARTIAL: CMSOptions
PARTIAL: CMSOptions = CMSOptions{bits: ffi::CMS_PARTIAL,}
pub const REUSE_DIGEST: CMSOptions
REUSE_DIGEST: CMSOptions = CMSOptions{bits: ffi::CMS_REUSE_DIGEST,}
pub const USE_KEYID: CMSOptions
USE_KEYID: CMSOptions = CMSOptions{bits: ffi::CMS_USE_KEYID,}
pub const DEBUG_DECRYPT: CMSOptions
DEBUG_DECRYPT: CMSOptions = CMSOptions{bits: ffi::CMS_DEBUG_DECRYPT,}
pub fn empty() -> CMSOptions
pub fn empty() -> CMSOptions
Returns an empty set of flags.
pub fn all() -> CMSOptions
pub fn all() -> CMSOptions
Returns the set containing all flags.
pub fn bits(&self) -> c_uint
pub fn bits(&self) -> c_uint
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: c_uint) -> Option<CMSOptions>
pub fn from_bits(bits: c_uint) -> Option<CMSOptions>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: c_uint) -> CMSOptions
pub fn from_bits_truncate(bits: c_uint) -> CMSOptions
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> bool
Returns true
if all flags are currently set.
pub fn intersects(&self, other: CMSOptions) -> bool
pub fn intersects(&self, other: CMSOptions) -> bool
Returns true
if there are flags common to both self
and other
.
pub fn contains(&self, other: CMSOptions) -> bool
pub fn contains(&self, other: CMSOptions) -> bool
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: CMSOptions)
pub fn insert(&mut self, other: CMSOptions)
Inserts the specified flags in-place.
pub fn remove(&mut self, other: CMSOptions)
pub fn remove(&mut self, other: CMSOptions)
Removes the specified flags in-place.
pub fn toggle(&mut self, other: CMSOptions)
pub fn toggle(&mut self, other: CMSOptions)
Toggles the specified flags in-place.
pub fn set(&mut self, other: CMSOptions, value: bool)
pub fn set(&mut self, other: CMSOptions, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for CMSOptions
impl Copy for CMSOptions
impl PartialEq for CMSOptions
impl PartialEq for CMSOptions
fn eq(&self, other: &CMSOptions) -> bool
fn eq(&self, other: &CMSOptions) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &CMSOptions) -> bool
fn ne(&self, other: &CMSOptions) -> bool
This method tests for !=
.
impl Eq for CMSOptions
impl Eq for CMSOptions
impl Clone for CMSOptions
impl Clone for CMSOptions
fn clone(&self) -> CMSOptions
fn clone(&self) -> CMSOptions
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialOrd for CMSOptions
impl PartialOrd for CMSOptions
fn partial_cmp(&self, other: &CMSOptions) -> Option<Ordering>
fn partial_cmp(&self, other: &CMSOptions) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &CMSOptions) -> bool
fn lt(&self, other: &CMSOptions) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &CMSOptions) -> bool
fn le(&self, other: &CMSOptions) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &CMSOptions) -> bool
fn gt(&self, other: &CMSOptions) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &CMSOptions) -> bool
fn ge(&self, other: &CMSOptions) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for CMSOptions
impl Ord for CMSOptions
fn cmp(&self, other: &CMSOptions) -> Ordering
fn cmp(&self, other: &CMSOptions) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for CMSOptions
impl Hash for CMSOptions
fn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Debug for CMSOptions
impl Debug for CMSOptions
impl Binary for CMSOptions
impl Binary for CMSOptions
impl Octal for CMSOptions
impl Octal for CMSOptions
impl LowerHex for CMSOptions
impl LowerHex for CMSOptions
impl UpperHex for CMSOptions
impl UpperHex for CMSOptions
impl BitOr for CMSOptions
impl BitOr for CMSOptions
type Output = CMSOptions
The resulting type after applying the |
operator.
fn bitor(self, other: CMSOptions) -> CMSOptions
fn bitor(self, other: CMSOptions) -> CMSOptions
Returns the union of the two sets of flags.
impl BitOrAssign for CMSOptions
impl BitOrAssign for CMSOptions
fn bitor_assign(&mut self, other: CMSOptions)
fn bitor_assign(&mut self, other: CMSOptions)
Adds the set of flags.
impl BitXor for CMSOptions
impl BitXor for CMSOptions
type Output = CMSOptions
The resulting type after applying the ^
operator.
fn bitxor(self, other: CMSOptions) -> CMSOptions
fn bitxor(self, other: CMSOptions) -> CMSOptions
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign for CMSOptions
impl BitXorAssign for CMSOptions
fn bitxor_assign(&mut self, other: CMSOptions)
fn bitxor_assign(&mut self, other: CMSOptions)
Toggles the set of flags.
impl BitAnd for CMSOptions
impl BitAnd for CMSOptions
type Output = CMSOptions
The resulting type after applying the &
operator.
fn bitand(self, other: CMSOptions) -> CMSOptions
fn bitand(self, other: CMSOptions) -> CMSOptions
Returns the intersection between the two sets of flags.
impl BitAndAssign for CMSOptions
impl BitAndAssign for CMSOptions
fn bitand_assign(&mut self, other: CMSOptions)
fn bitand_assign(&mut self, other: CMSOptions)
Disables all flags disabled in the set.
impl Sub for CMSOptions
impl Sub for CMSOptions
type Output = CMSOptions
The resulting type after applying the -
operator.
fn sub(self, other: CMSOptions) -> CMSOptions
fn sub(self, other: CMSOptions) -> CMSOptions
Returns the set difference of the two sets of flags.
impl SubAssign for CMSOptions
impl SubAssign for CMSOptions
fn sub_assign(&mut self, other: CMSOptions)
fn sub_assign(&mut self, other: CMSOptions)
Disables all flags enabled in the set.
impl Not for CMSOptions
impl Not for CMSOptions
type Output = CMSOptions
The resulting type after applying the !
operator.
fn not(self) -> CMSOptions
fn not(self) -> CMSOptions
Returns the complement of this set of flags.
impl Extend<CMSOptions> for CMSOptions
impl Extend<CMSOptions> for CMSOptions
fn extend<T: IntoIterator<Item = CMSOptions>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = CMSOptions>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
impl FromIterator<CMSOptions> for CMSOptions
impl FromIterator<CMSOptions> for CMSOptions
fn from_iter<T: IntoIterator<Item = CMSOptions>>(iterator: T) -> CMSOptions
fn from_iter<T: IntoIterator<Item = CMSOptions>>(iterator: T) -> CMSOptions
Creates a value from an iterator. Read more
Auto Trait Implementations
impl Send for CMSOptions
impl Send for CMSOptions
impl Sync for CMSOptions
impl Sync for CMSOptions