Struct timegraph_client::TimegraphData
source · pub struct TimegraphData {
pub collection: String,
pub task_id: u64,
pub task_cycle: u64,
pub target_block_number: u64,
pub timechain_block_number: u64,
pub shard_id: u64,
pub signature: [u8; 64],
pub data: Vec<String>,
}
Fields§
§collection: String
collection hashId
task_id: u64
task associated with data
task_cycle: u64
for repeated task it’s incremented on every run
target_block_number: u64
target network block number
timechain_block_number: u64
time-chain block number
shard_id: u64
Shard identifier
signature: [u8; 64]
TSS signature
data: Vec<String>
data to add into collection
Trait Implementations§
source§impl Clone for TimegraphData
impl Clone for TimegraphData
source§fn clone(&self) -> TimegraphData
fn clone(&self) -> TimegraphData
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for TimegraphData
impl Send for TimegraphData
impl Sync for TimegraphData
impl Unpin for TimegraphData
impl UnwindSafe for TimegraphData
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