Struct fuel_core_client::client::schema::message::MessageProofArgs
source · pub struct MessageProofArgs {
pub transaction_id: TransactionId,
pub message_id: MessageId,
pub commit_block_id: Option<BlockId>,
pub commit_block_height: Option<U32>,
}
Fields§
§transaction_id: TransactionId
Transaction id that contains the output message.
message_id: MessageId
Message id of the output message that requires a proof.
commit_block_id: Option<BlockId>
The query supports either commit_block_id
, or commit_block_height
set on, not both.
The block id of the commitment block.
If it is None
, the commit_block_height
should be Some
.
commit_block_height: Option<U32>
The block height of the commitment block.
If it is None
, the commit_block_id
should be Some
.
Trait Implementations§
source§impl Debug for MessageProofArgs
impl Debug for MessageProofArgs
source§impl QueryVariables for MessageProofArgs
impl QueryVariables for MessageProofArgs
§type Fields = MessageProofArgsFields
type Fields = MessageProofArgsFields
A struct that determines which variables are available when using this struct.
source§impl Serialize for MessageProofArgs
impl Serialize for MessageProofArgs
impl VariableMatch<MessageProofArgs> for MessageProofArgs
Auto Trait Implementations§
impl RefUnwindSafe for MessageProofArgs
impl Send for MessageProofArgs
impl Sync for MessageProofArgs
impl Unpin for MessageProofArgs
impl UnwindSafe for MessageProofArgs
Blanket Implementations§
§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere T: Any + Debug,
§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any
.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