pub struct MessageIdMultisigIsmMetadata {
pub origin_merkle_tree: HexBinary,
pub merkle_root: HexBinary,
pub merkle_index: HexBinary,
pub signatures: Vec<HexBinary>,
}
Fields§
§origin_merkle_tree: HexBinary
§merkle_root: HexBinary
§merkle_index: HexBinary
§signatures: Vec<HexBinary>
Implementations§
Source§impl MessageIdMultisigIsmMetadata
impl MessageIdMultisigIsmMetadata
pub fn merkle_index(&self) -> u32
Trait Implementations§
Source§impl Clone for MessageIdMultisigIsmMetadata
impl Clone for MessageIdMultisigIsmMetadata
Source§fn clone(&self) -> MessageIdMultisigIsmMetadata
fn clone(&self) -> MessageIdMultisigIsmMetadata
Returns a copy 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 MessageIdMultisigIsmMetadata
impl Debug for MessageIdMultisigIsmMetadata
Source§impl<'de> Deserialize<'de> for MessageIdMultisigIsmMetadata
impl<'de> Deserialize<'de> for MessageIdMultisigIsmMetadata
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
Source§impl From<HexBinary> for MessageIdMultisigIsmMetadata
impl From<HexBinary> for MessageIdMultisigIsmMetadata
Source§impl From<MessageIdMultisigIsmMetadata> for HexBinary
impl From<MessageIdMultisigIsmMetadata> for HexBinary
Source§fn from(v: MessageIdMultisigIsmMetadata) -> Self
fn from(v: MessageIdMultisigIsmMetadata) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for MessageIdMultisigIsmMetadata
impl JsonSchema for MessageIdMultisigIsmMetadata
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for MessageIdMultisigIsmMetadata
impl PartialEq for MessageIdMultisigIsmMetadata
Source§fn eq(&self, other: &MessageIdMultisigIsmMetadata) -> bool
fn eq(&self, other: &MessageIdMultisigIsmMetadata) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MessageIdMultisigIsmMetadata
Auto Trait Implementations§
impl Freeze for MessageIdMultisigIsmMetadata
impl RefUnwindSafe for MessageIdMultisigIsmMetadata
impl Send for MessageIdMultisigIsmMetadata
impl Sync for MessageIdMultisigIsmMetadata
impl Unpin for MessageIdMultisigIsmMetadata
impl UnwindSafe for MessageIdMultisigIsmMetadata
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