pub struct ScriptCount {
pub script: String,
pub count: usize,
pub last: u64,
}Expand description
One script’s slice of the ledger.
Fields§
§script: String§count: usize§last: u64The newest event for THIS script.
Trait Implementations§
Source§impl Clone for ScriptCount
impl Clone for ScriptCount
Source§fn clone(&self) -> ScriptCount
fn clone(&self) -> ScriptCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScriptCount
impl Debug for ScriptCount
impl Eq for ScriptCount
Source§impl PartialEq for ScriptCount
impl PartialEq for ScriptCount
impl StructuralPartialEq for ScriptCount
Auto Trait Implementations§
impl Freeze for ScriptCount
impl RefUnwindSafe for ScriptCount
impl Send for ScriptCount
impl Sync for ScriptCount
impl Unpin for ScriptCount
impl UnsafeUnpin for ScriptCount
impl UnwindSafe for ScriptCount
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