nostrdb-rs

nostrdb in rust!
git clone git://jb55.com/nostrdb-rs
Log | Files | Refs | Submodules | README | LICENSE

commit f64198c39de9ac8dbb35dec89b44a38e2d6142e0
parent b843b532c062238fd40e6567747730685a44eaaf
Author: William Casarin <jb55@jb55.com>
Date:   Fri,  9 Feb 2024 15:59:04 -0800

notekey: implement copy

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/note.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/note.rs b/src/note.rs @@ -1,7 +1,7 @@ use crate::bindings; use crate::transaction::Transaction; -#[derive(Debug, Clone, Eq, Ord, PartialEq, PartialOrd)] +#[derive(Debug, Clone, Copy, Eq, Ord, PartialEq, PartialOrd)] pub struct NoteKey(u64); impl NoteKey {