pub struct DigitallySigned<'a> {
pub alg: Option<SignatureAndHashAlgorithm>,
pub data: &'a [u8],
}
Expand description
DigitallySigned structure from [RFC2246] section 4.7 has no algorithm definition. This should be deprecated in favor of DigitallySigned structure from [RFC5246] section 4.7
Fields§
§alg: Option<SignatureAndHashAlgorithm>
§data: &'a [u8]
Trait Implementations§
Source§impl<'a> Clone for DigitallySigned<'a>
impl<'a> Clone for DigitallySigned<'a>
Source§fn clone(&self) -> DigitallySigned<'a>
fn clone(&self) -> DigitallySigned<'a>
Returns a copy 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<'a> Debug for DigitallySigned<'a>
impl<'a> Debug for DigitallySigned<'a>
Source§impl<'a> PartialEq for DigitallySigned<'a>
impl<'a> PartialEq for DigitallySigned<'a>
impl<'a> StructuralPartialEq for DigitallySigned<'a>
Auto Trait Implementations§
impl<'a> Freeze for DigitallySigned<'a>
impl<'a> RefUnwindSafe for DigitallySigned<'a>
impl<'a> Send for DigitallySigned<'a>
impl<'a> Sync for DigitallySigned<'a>
impl<'a> Unpin for DigitallySigned<'a>
impl<'a> UnwindSafe for DigitallySigned<'a>
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