pub struct ResolvedNote {
pub rrv_identifier: u32,
pub file_offset: u64,
pub header: NoteHeader,
}Expand description
One note resolved (and identity-verified) by Database::enumerate_notes.
Fields§
§rrv_identifier: u32The RRV identifier the note was reached through (== the note
header’s rrv_identifier; the identity gate guarantees equality).
file_offset: u64Byte offset of the note record within the file.
header: NoteHeaderThe parsed note header.
Trait Implementations§
Source§impl Clone for ResolvedNote
impl Clone for ResolvedNote
Source§fn clone(&self) -> ResolvedNote
fn clone(&self) -> ResolvedNote
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 moreAuto Trait Implementations§
impl Freeze for ResolvedNote
impl RefUnwindSafe for ResolvedNote
impl Send for ResolvedNote
impl Sync for ResolvedNote
impl Unpin for ResolvedNote
impl UnsafeUnpin for ResolvedNote
impl UnwindSafe for ResolvedNote
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