Struct bee_api_types::responses::BlockMetadataResponse
source · [−]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: Stringparents: Vec<String>is_solid: boolreferenced_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
sourceimpl Clone for BlockMetadataResponse
impl Clone for BlockMetadataResponse
sourcefn clone(&self) -> BlockMetadataResponse
fn clone(&self) -> BlockMetadataResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BlockMetadataResponse
impl Debug for BlockMetadataResponse
sourceimpl<'de> Deserialize<'de> for BlockMetadataResponse
impl<'de> Deserialize<'de> for BlockMetadataResponse
sourcefn 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
sourceimpl IntoResponse for BlockMetadataResponse
impl IntoResponse for BlockMetadataResponse
sourcefn into_response(self) -> Response<BoxBody>
fn into_response(self) -> Response<BoxBody>
Create a response.
sourceimpl PartialEq<BlockMetadataResponse> for BlockMetadataResponse
impl PartialEq<BlockMetadataResponse> for BlockMetadataResponse
sourcefn eq(&self, other: &BlockMetadataResponse) -> bool
fn eq(&self, other: &BlockMetadataResponse) -> bool
sourceimpl Serialize for BlockMetadataResponse
impl Serialize for BlockMetadataResponse
impl Eq for BlockMetadataResponse
impl StructuralEq for BlockMetadataResponse
impl StructuralPartialEq for BlockMetadataResponse
Auto Trait Implementations
impl RefUnwindSafe for BlockMetadataResponse
impl Send for BlockMetadataResponse
impl Sync for BlockMetadataResponse
impl Unpin for BlockMetadataResponse
impl UnwindSafe for BlockMetadataResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more