pub struct SignatureBase {
pub components: IndexMap<CoveredComponent, String>,
pub parameters: SignatureParams,
}
Expand description
A representation of the signature base to be generated during verification and signing.
Fields§
§components: IndexMap<CoveredComponent, String>
The components that have been covered and their found values
parameters: SignatureParams
The component parameters associated with this message.
Trait Implementations§
Source§impl Clone for SignatureBase
impl Clone for SignatureBase
Source§fn clone(&self) -> SignatureBase
fn clone(&self) -> SignatureBase
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SignatureBase
impl RefUnwindSafe for SignatureBase
impl Send for SignatureBase
impl Sync for SignatureBase
impl Unpin for SignatureBase
impl UnwindSafe for SignatureBase
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