Struct x509_certificate::rfc3447::OtherPrimeInfo
source · pub struct OtherPrimeInfo {
pub ri: Unsigned,
pub di: Unsigned,
pub ti: Unsigned,
}
Expand description
Other prime info
OtherPrimeInfo ::= SEQUENCE {
prime INTEGER, -- ri
exponent INTEGER, -- di
coefficient INTEGER -- ti
}
Fields§
§ri: Unsigned
§di: Unsigned
§ti: Unsigned
Implementations§
source§impl OtherPrimeInfo
impl OtherPrimeInfo
pub fn take_opt_from<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Option<Self>, DecodeError<S::Error>>
pub fn take_from<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Self, DecodeError<S::Error>>
pub fn encode_ref(&self) -> impl Values + '_
Trait Implementations§
source§impl Clone for OtherPrimeInfo
impl Clone for OtherPrimeInfo
source§fn clone(&self) -> OtherPrimeInfo
fn clone(&self) -> OtherPrimeInfo
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 Debug for OtherPrimeInfo
impl Debug for OtherPrimeInfo
source§impl Values for OtherPrimeInfo
impl Values for OtherPrimeInfo
source§fn encoded_len(&self, mode: Mode) -> usize
fn encoded_len(&self, mode: Mode) -> usize
Returns the length of the encoded values for the given mode.
source§fn write_encoded<W: Write>(
&self,
mode: Mode,
target: &mut W
) -> Result<(), Error>
fn write_encoded<W: Write>( &self, mode: Mode, target: &mut W ) -> Result<(), Error>
Encodes the values in the given mode and writes them to
target
.source§fn explicit(self, tag: Tag) -> Constructed<Self>where
Self: Sized,
fn explicit(self, tag: Tag) -> Constructed<Self>where Self: Sized,
Converts the encoder into one with an explicit tag.
source§fn to_captured(&self, mode: Mode) -> Captured
fn to_captured(&self, mode: Mode) -> Captured
Captures the encoded values in the given mode.
Auto Trait Implementations§
impl RefUnwindSafe for OtherPrimeInfo
impl Send for OtherPrimeInfo
impl Sync for OtherPrimeInfo
impl Unpin for OtherPrimeInfo
impl UnwindSafe for OtherPrimeInfo
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