pub struct BlockTransaction {
pub expiration: DateTime<Utc>,
pub ref_block_num: u16,
pub ref_block_prefix: u32,
pub max_net_usage_words: u32,
pub max_cpu_usage_ms: u8,
pub delay_sec: u32,
pub context_free_actions: Vec<String>,
pub actions: Vec<BlockTransactionAction>,
}Fields§
§expiration: DateTime<Utc>§ref_block_num: u16§ref_block_prefix: u32§max_net_usage_words: u32§max_cpu_usage_ms: u8§delay_sec: u32§context_free_actions: Vec<String>§actions: Vec<BlockTransactionAction>Trait Implementations§
Source§impl Debug for BlockTransaction
impl Debug for BlockTransaction
Source§impl<'de> Deserialize<'de> for BlockTransaction
impl<'de> Deserialize<'de> for BlockTransaction
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
Auto Trait Implementations§
impl Freeze for BlockTransaction
impl RefUnwindSafe for BlockTransaction
impl Send for BlockTransaction
impl Sync for BlockTransaction
impl Unpin for BlockTransaction
impl UnwindSafe for BlockTransaction
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