Struct miden_client::sync::SyncedNewNotes
source · pub struct SyncedNewNotes { /* private fields */ }Expand description
Contains information about new notes as consequence of a sync
Implementations§
source§impl SyncedNewNotes
impl SyncedNewNotes
pub fn new( new_public_notes: Vec<InputNote>, updated_input_notes: Vec<InputNote>, updated_output_notes: Vec<(NoteId, NoteInclusionProof)>, ) -> Self
pub fn new_public_notes(&self) -> &[InputNote]
pub fn updated_input_notes(&self) -> &[InputNote]
pub fn updated_output_notes(&self) -> &[(NoteId, NoteInclusionProof)]
Auto Trait Implementations§
impl Freeze for SyncedNewNotes
impl RefUnwindSafe for SyncedNewNotes
impl Send for SyncedNewNotes
impl Sync for SyncedNewNotes
impl Unpin for SyncedNewNotes
impl UnwindSafe for SyncedNewNotes
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