Struct miden_client::rpc::NoteInclusionDetails
source · pub struct NoteInclusionDetails {
pub block_num: u32,
pub note_index: u32,
pub merkle_path: MerklePath,
}Expand description
Contains information related to the note inclusion, but not related to the block header that contains the note
Fields§
§block_num: u32§note_index: u32§merkle_path: MerklePathImplementations§
source§impl NoteInclusionDetails
impl NoteInclusionDetails
pub fn new(block_num: u32, note_index: u32, merkle_path: MerklePath) -> Self
Auto Trait Implementations§
impl Freeze for NoteInclusionDetails
impl RefUnwindSafe for NoteInclusionDetails
impl Send for NoteInclusionDetails
impl Sync for NoteInclusionDetails
impl Unpin for NoteInclusionDetails
impl UnwindSafe for NoteInclusionDetails
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