pub struct OutputMetadataResponse {
pub block_id: String,
pub transaction_id: String,
pub output_index: u16,
pub is_spent: bool,
pub milestone_index_spent: Option<u32>,
pub milestone_timestamp_spent: Option<u32>,
pub transaction_id_spent: Option<String>,
pub milestone_index_booked: u32,
pub milestone_timestamp_booked: u32,
pub ledger_index: u32,
}
Expand description
Response of GET /api/core/v2/outputs/{output_id}/metadata. Returns an output metadata.
Fields§
§block_id: String
§transaction_id: String
§output_index: u16
§is_spent: bool
§milestone_index_spent: Option<u32>
§milestone_timestamp_spent: Option<u32>
§transaction_id_spent: Option<String>
§milestone_index_booked: u32
§milestone_timestamp_booked: u32
§ledger_index: u32
Trait Implementations§
Source§impl Clone for OutputMetadataResponse
impl Clone for OutputMetadataResponse
Source§fn clone(&self) -> OutputMetadataResponse
fn clone(&self) -> OutputMetadataResponse
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 OutputMetadataResponse
impl Debug for OutputMetadataResponse
Source§impl<'de> Deserialize<'de> for OutputMetadataResponse
impl<'de> Deserialize<'de> for OutputMetadataResponse
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 IntoResponse for OutputMetadataResponse
impl IntoResponse for OutputMetadataResponse
Source§fn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
Source§impl PartialEq for OutputMetadataResponse
impl PartialEq for OutputMetadataResponse
Source§impl Serialize for OutputMetadataResponse
impl Serialize for OutputMetadataResponse
impl Eq for OutputMetadataResponse
impl StructuralPartialEq for OutputMetadataResponse
Auto Trait Implementations§
impl Freeze for OutputMetadataResponse
impl RefUnwindSafe for OutputMetadataResponse
impl Send for OutputMetadataResponse
impl Sync for OutputMetadataResponse
impl Unpin for OutputMetadataResponse
impl UnwindSafe for OutputMetadataResponse
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