pub struct RuneResponse {Show 18 fields
pub id: RuneId,
pub block: u64,
pub burned: u128,
pub divisibility: u8,
pub etching: SerializedTxid,
pub number: u64,
pub premine: u128,
pub supply: u128,
pub max_supply: u128,
pub spaced_rune: SpacedRune,
pub symbol: Option<char>,
pub mint: Option<MintResponse>,
pub burns: u128,
pub pending_burns: u128,
pub pending_mints: u128,
pub inscription_id: Option<InscriptionId>,
pub timestamp: u64,
pub turbo: bool,
}Fields§
§id: RuneId§block: u64§burned: u128§divisibility: u8§etching: SerializedTxid§number: u64§premine: u128§supply: u128§max_supply: u128§spaced_rune: SpacedRune§symbol: Option<char>§mint: Option<MintResponse>§burns: u128§pending_burns: u128§pending_mints: u128§inscription_id: Option<InscriptionId>§timestamp: u64§turbo: boolTrait Implementations§
Source§impl Clone for RuneResponse
impl Clone for RuneResponse
Source§fn clone(&self) -> RuneResponse
fn clone(&self) -> RuneResponse
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 RuneResponse
impl Debug for RuneResponse
Source§impl<'de> Deserialize<'de> for RuneResponse
impl<'de> Deserialize<'de> for RuneResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuneResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuneResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuneResponse
impl PartialEq for RuneResponse
Source§impl Serialize for RuneResponse
impl Serialize for RuneResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RuneResponse
Auto Trait Implementations§
impl Freeze for RuneResponse
impl RefUnwindSafe for RuneResponse
impl Send for RuneResponse
impl Sync for RuneResponse
impl Unpin for RuneResponse
impl UnwindSafe for RuneResponse
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