Struct ibc_core_client::context::types::proto::v1::MsgCreateClient
pub struct MsgCreateClient {
pub client_state: Option<Any>,
pub consensus_state: Option<Any>,
pub signer: String,
}Expand description
MsgCreateClient defines a message to create an IBC client
Fields§
§client_state: Option<Any>light client state
consensus_state: Option<Any>consensus state associated with the client that corresponds to a given height.
signer: Stringsigner address
Trait Implementations§
§impl Clone for MsgCreateClient
impl Clone for MsgCreateClient
§fn clone(&self) -> MsgCreateClient
fn clone(&self) -> MsgCreateClient
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 more§impl Debug for MsgCreateClient
impl Debug for MsgCreateClient
§impl Default for MsgCreateClient
impl Default for MsgCreateClient
§fn default() -> MsgCreateClient
fn default() -> MsgCreateClient
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for MsgCreateClient
impl<'de> Deserialize<'de> for MsgCreateClient
§fn deserialize<__D>(
__deserializer: __D
) -> Result<MsgCreateClient, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<MsgCreateClient, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<MsgCreateClient> for MsgCreateClient
impl From<MsgCreateClient> for MsgCreateClient
source§fn from(ics_msg: MsgCreateClient) -> MsgCreateClient
fn from(ics_msg: MsgCreateClient) -> MsgCreateClient
Converts to this type from the input type.
§impl Message for MsgCreateClient
impl Message for MsgCreateClient
§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where
B: BufMut,
Self: Sized,
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>where B: BufMut, Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where
B: Buf,
Self: Default,
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>where B: Buf, Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moresource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where
B: Buf,
Self: Sized,
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>where B: Buf, Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.§impl PartialEq for MsgCreateClient
impl PartialEq for MsgCreateClient
§fn eq(&self, other: &MsgCreateClient) -> bool
fn eq(&self, other: &MsgCreateClient) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Protobuf<MsgCreateClient> for MsgCreateClient
impl Protobuf<MsgCreateClient> for MsgCreateClient
§fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode<B>(self, buf: &mut B) -> Result<(), Error>where B: BufMut,
Encode into a buffer in Protobuf format. Read more
§fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where B: BufMut,
Encode with a length-delimiter to a buffer in Protobuf format. Read more
§fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode<B>(buf: B) -> Result<Self, Error>where B: Buf,
Constructor that attempts to decode an instance from a buffer. Read more
§fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where B: Buf,
Constructor that attempts to decode a length-delimited instance from
the buffer. Read more
§fn encoded_len(self) -> usize
fn encoded_len(self) -> usize
Returns the encoded length of the message without a length delimiter. Read more
§fn encode_vec(self) -> Vec<u8>
fn encode_vec(self) -> Vec<u8>
Encodes into a Protobuf-encoded
Vec<u8>.§fn decode_vec(v: &[u8]) -> Result<Self, Error>
fn decode_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance from a
Vec<u8> (or equivalent).§fn encode_length_delimited_vec(self) -> Vec<u8>
fn encode_length_delimited_vec(self) -> Vec<u8>
Encode with a length-delimiter to a
Vec<u8> Protobuf-encoded message.§fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
fn decode_length_delimited_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance with a
length-delimiter from a
Vec<u8> or equivalent.§impl Serialize for MsgCreateClient
impl Serialize for MsgCreateClient
§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
source§impl TryFrom<MsgCreateClient> for MsgCreateClient
impl TryFrom<MsgCreateClient> for MsgCreateClient
§type Error = ClientError
type Error = ClientError
The type returned in the event of a conversion error.
source§fn try_from(
raw: MsgCreateClient
) -> Result<MsgCreateClient, <MsgCreateClient as TryFrom<MsgCreateClient>>::Error>
fn try_from( raw: MsgCreateClient ) -> Result<MsgCreateClient, <MsgCreateClient as TryFrom<MsgCreateClient>>::Error>
Performs the conversion.
impl StructuralPartialEq for MsgCreateClient
Auto Trait Implementations§
impl RefUnwindSafe for MsgCreateClient
impl Send for MsgCreateClient
impl Sync for MsgCreateClient
impl Unpin for MsgCreateClient
impl UnwindSafe for MsgCreateClient
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