pub trait CardanoDelegator {
// Required method
fn from_delegator_key(key: DelegatorKey) -> Self;
}
Expand description
Signifies that a type represents a Cardano delegator
Required Methods§
Sourcefn from_delegator_key(key: DelegatorKey) -> Self
fn from_delegator_key(key: DelegatorKey) -> Self
Converts a Cardano delegator key to Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.