pub struct ObjectDigestInfo {
pub digested_object_type: DigestedObjectType,
pub other_object_type_id: Oid,
pub digest_algorithm: AlgorithmIdentifier,
pub object_digest: BitString,
}
Expand description
Object digest info.
ObjectDigestInfo ::= SEQUENCE {
digestedObjectType ENUMERATED {
publicKey (0),
publicKeyCert (1),
otherObjectTypes (2) },
-- otherObjectTypes MUST NOT
-- be used in this profile
otherObjectTypeID OBJECT IDENTIFIER OPTIONAL,
digestAlgorithm AlgorithmIdentifier,
objectDigest BIT STRING
Fields§
§digested_object_type: DigestedObjectType
§other_object_type_id: Oid
§digest_algorithm: AlgorithmIdentifier
§object_digest: BitString
Trait Implementations§
Source§impl Clone for ObjectDigestInfo
impl Clone for ObjectDigestInfo
Source§fn clone(&self) -> ObjectDigestInfo
fn clone(&self) -> ObjectDigestInfo
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 ObjectDigestInfo
impl Debug for ObjectDigestInfo
Source§impl PartialEq for ObjectDigestInfo
impl PartialEq for ObjectDigestInfo
impl Eq for ObjectDigestInfo
impl StructuralPartialEq for ObjectDigestInfo
Auto Trait Implementations§
impl !Freeze for ObjectDigestInfo
impl RefUnwindSafe for ObjectDigestInfo
impl Send for ObjectDigestInfo
impl Sync for ObjectDigestInfo
impl Unpin for ObjectDigestInfo
impl UnwindSafe for ObjectDigestInfo
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