pub struct SignerRegistrationsMessage {
pub registered_at: Option<i64>,
pub signing_at: Option<i64>,
pub registrations: Option<Vec<SignerRegistrationsListItemMessage>>,
}Expand description
SignerRegistrationsMessage : This message holds the registered signers at a given epoch.
Fields§
§registered_at: Option<i64>Cardano chain epoch number
signing_at: Option<i64>Cardano chain epoch number
registrations: Option<Vec<SignerRegistrationsListItemMessage>>Implementations§
Source§impl SignerRegistrationsMessage
impl SignerRegistrationsMessage
Sourcepub fn new() -> SignerRegistrationsMessage
pub fn new() -> SignerRegistrationsMessage
This message holds the registered signers at a given epoch.
Trait Implementations§
Source§impl Clone for SignerRegistrationsMessage
impl Clone for SignerRegistrationsMessage
Source§fn clone(&self) -> SignerRegistrationsMessage
fn clone(&self) -> SignerRegistrationsMessage
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 moreSource§impl Debug for SignerRegistrationsMessage
impl Debug for SignerRegistrationsMessage
Source§impl Default for SignerRegistrationsMessage
impl Default for SignerRegistrationsMessage
Source§fn default() -> SignerRegistrationsMessage
fn default() -> SignerRegistrationsMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignerRegistrationsMessage
impl<'de> Deserialize<'de> for SignerRegistrationsMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SignerRegistrationsMessage
Auto Trait Implementations§
impl Freeze for SignerRegistrationsMessage
impl RefUnwindSafe for SignerRegistrationsMessage
impl Send for SignerRegistrationsMessage
impl Sync for SignerRegistrationsMessage
impl Unpin for SignerRegistrationsMessage
impl UnwindSafe for SignerRegistrationsMessage
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