Struct openssl::cms::CMSOptions [−]
pub struct CMSOptions { /* fields omitted */ }Methods
impl CMSOptions
impl CMSOptionspub 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() -> CMSOptionsReturns an empty set of flags.
pub fn all() -> CMSOptions
pub fn all() -> CMSOptionsReturns the set containing all flags.
pub fn bits(&self) -> c_uint
pub fn bits(&self) -> c_uintReturns 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) -> CMSOptionsConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: CMSOptions) -> bool
pub fn intersects(&self, other: CMSOptions) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: CMSOptions) -> bool
pub fn contains(&self, other: CMSOptions) -> boolReturns 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 CMSOptionsimpl PartialEq for CMSOptions
impl PartialEq for CMSOptionsfn eq(&self, other: &CMSOptions) -> bool
fn eq(&self, other: &CMSOptions) -> boolThis 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) -> boolThis method tests for !=.
impl Eq for CMSOptions
impl Eq for CMSOptionsimpl Clone for CMSOptions
impl Clone for CMSOptionsfn clone(&self) -> CMSOptions
fn clone(&self) -> CMSOptionsReturns 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 CMSOptionsfn 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) -> boolThis 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) -> boolThis 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) -> boolThis 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) -> boolThis 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 CMSOptionsfn cmp(&self, other: &CMSOptions) -> Ordering
fn cmp(&self, other: &CMSOptions) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for CMSOptions
impl Hash for CMSOptionsfn 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 CMSOptionsimpl Binary for CMSOptions
impl Binary for CMSOptionsimpl Octal for CMSOptions
impl Octal for CMSOptionsimpl LowerHex for CMSOptions
impl LowerHex for CMSOptionsimpl UpperHex for CMSOptions
impl UpperHex for CMSOptionsimpl BitOr for CMSOptions
impl BitOr for CMSOptionstype Output = CMSOptions
The resulting type after applying the | operator.
fn bitor(self, other: CMSOptions) -> CMSOptions
fn bitor(self, other: CMSOptions) -> CMSOptionsReturns the union of the two sets of flags.
impl BitOrAssign for CMSOptions
impl BitOrAssign for CMSOptionsfn 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 CMSOptionstype Output = CMSOptions
The resulting type after applying the ^ operator.
fn bitxor(self, other: CMSOptions) -> CMSOptions
fn bitxor(self, other: CMSOptions) -> CMSOptionsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for CMSOptions
impl BitXorAssign for CMSOptionsfn 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 CMSOptionstype Output = CMSOptions
The resulting type after applying the & operator.
fn bitand(self, other: CMSOptions) -> CMSOptions
fn bitand(self, other: CMSOptions) -> CMSOptionsReturns the intersection between the two sets of flags.
impl BitAndAssign for CMSOptions
impl BitAndAssign for CMSOptionsfn 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 CMSOptionstype Output = CMSOptions
The resulting type after applying the - operator.
fn sub(self, other: CMSOptions) -> CMSOptions
fn sub(self, other: CMSOptions) -> CMSOptionsReturns the set difference of the two sets of flags.
impl SubAssign for CMSOptions
impl SubAssign for CMSOptionsfn 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 CMSOptionstype Output = CMSOptions
The resulting type after applying the ! operator.
fn not(self) -> CMSOptions
fn not(self) -> CMSOptionsReturns the complement of this set of flags.
impl Extend<CMSOptions> for CMSOptions
impl Extend<CMSOptions> for CMSOptionsfn 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 CMSOptionsfn from_iter<T: IntoIterator<Item = CMSOptions>>(iterator: T) -> CMSOptions
fn from_iter<T: IntoIterator<Item = CMSOptions>>(iterator: T) -> CMSOptionsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for CMSOptions
impl Send for CMSOptionsimpl Sync for CMSOptions
impl Sync for CMSOptions