pub enum Voter {
ConstitutionalCommitteeScript(Hash<28>),
ConstitutionalCommitteeKey(Hash<28>),
DRepScript(Hash<28>),
DRepKey(Hash<28>),
StakePoolKey(Hash<28>),
}Variants§
ConstitutionalCommitteeScript(Hash<28>)
ConstitutionalCommitteeKey(Hash<28>)
DRepScript(Hash<28>)
DRepKey(Hash<28>)
StakePoolKey(Hash<28>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Voter
impl<'de> Deserialize<'de> for Voter
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Voter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Voter, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&Voter> for StakeCredentialKind
impl From<&Voter> for StakeCredentialKind
Source§impl Ord for Voter
impl Ord for Voter
Source§impl PartialOrd for Voter
impl PartialOrd for Voter
Source§impl Serialize for Voter
impl Serialize for Voter
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for Voter
impl StructuralPartialEq for Voter
Auto Trait Implementations§
impl Freeze for Voter
impl RefUnwindSafe for Voter
impl Send for Voter
impl Sync for Voter
impl Unpin for Voter
impl UnsafeUnpin for Voter
impl UnwindSafe for Voter
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more