Struct cardano_serialization_lib::impl_mockchain::key::Signed [−][src]
pub struct Signed<T, A: VerificationAlgorithm> {
pub data: T,
pub sig: Signature<T, A>,
}
Expand description
A serializable type T with a signature.
Fields
data: T
sig: Signature<T, A>
Trait Implementations
Auto Trait Implementations
impl<T, A> RefUnwindSafe for Signed<T, A> where
T: RefUnwindSafe,
<A as VerificationAlgorithm>::Signature: RefUnwindSafe,
impl<T, A> UnwindSafe for Signed<T, A> where
T: UnwindSafe,
<A as VerificationAlgorithm>::Signature: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more