pub struct BlockMetadataResponse {
pub block_id: String,
pub parents: Vec<String>,
pub is_solid: bool,
pub referenced_by_milestone_index: Option<u32>,
pub milestone_index: Option<u32>,
pub ledger_inclusion_state: Option<LedgerInclusionStateDto>,
pub conflict_reason: Option<u8>,
pub white_flag_index: Option<u32>,
pub should_promote: Option<bool>,
pub should_reattach: Option<bool>,
}
Expand description
Response of GET /api/core/v2/blocks/{block_id}/metadata. Returns the metadata of a block.
Fields§
§block_id: String
§parents: Vec<String>
§is_solid: bool
§referenced_by_milestone_index: Option<u32>
§milestone_index: Option<u32>
§ledger_inclusion_state: Option<LedgerInclusionStateDto>
§conflict_reason: Option<u8>
§white_flag_index: Option<u32>
§should_promote: Option<bool>
§should_reattach: Option<bool>
Trait Implementations§
Source§impl Clone for BlockMetadataResponse
impl Clone for BlockMetadataResponse
Source§fn clone(&self) -> BlockMetadataResponse
fn clone(&self) -> BlockMetadataResponse
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 BlockMetadataResponse
impl Debug for BlockMetadataResponse
Source§impl<'de> Deserialize<'de> for BlockMetadataResponse
impl<'de> Deserialize<'de> for BlockMetadataResponse
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 BlockMetadataResponse
impl IntoResponse for BlockMetadataResponse
Source§fn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
Source§impl PartialEq for BlockMetadataResponse
impl PartialEq for BlockMetadataResponse
Source§impl Serialize for BlockMetadataResponse
impl Serialize for BlockMetadataResponse
impl Eq for BlockMetadataResponse
impl StructuralPartialEq for BlockMetadataResponse
Auto Trait Implementations§
impl Freeze for BlockMetadataResponse
impl RefUnwindSafe for BlockMetadataResponse
impl Send for BlockMetadataResponse
impl Sync for BlockMetadataResponse
impl Unpin for BlockMetadataResponse
impl UnwindSafe for BlockMetadataResponse
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