pub struct QueryResponseInfo {
pub data: String,
pub proof: Option<String>,
pub height: u64,
}Expand description
Response for the query RPC method.
Fields§
§data: StringHex-encoded result data.
proof: Option<String>Hex-encoded Merkle proof (if provided by the application).
height: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryResponseInfo
impl RefUnwindSafe for QueryResponseInfo
impl Send for QueryResponseInfo
impl Sync for QueryResponseInfo
impl Unpin for QueryResponseInfo
impl UnsafeUnpin for QueryResponseInfo
impl UnwindSafe for QueryResponseInfo
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