use miden_client::store::OutputNoteState as NativeOutputNoteState;
use wasm_bindgen::prelude::*;
#[derive(Clone)]
#[wasm_bindgen]
pub enum OutputNoteState {
ExpectedPartial,
ExpectedFull,
CommittedPartial,
CommittedFull,
Consumed,
}
impl From<NativeOutputNoteState> for OutputNoteState {
fn from(native_note: NativeOutputNoteState) -> Self {
match native_note {
NativeOutputNoteState::ExpectedPartial => OutputNoteState::ExpectedPartial,
NativeOutputNoteState::ExpectedFull { .. } => OutputNoteState::ExpectedFull,
NativeOutputNoteState::CommittedPartial { .. } => OutputNoteState::CommittedPartial,
NativeOutputNoteState::CommittedFull { .. } => OutputNoteState::CommittedFull,
NativeOutputNoteState::Consumed { .. } => OutputNoteState::Consumed,
}
}
}
impl From<&NativeOutputNoteState> for OutputNoteState {
fn from(native_note: &NativeOutputNoteState) -> Self {
match native_note {
NativeOutputNoteState::ExpectedPartial => OutputNoteState::ExpectedPartial,
NativeOutputNoteState::ExpectedFull { .. } => OutputNoteState::ExpectedFull,
NativeOutputNoteState::CommittedPartial { .. } => OutputNoteState::CommittedPartial,
NativeOutputNoteState::CommittedFull { .. } => OutputNoteState::CommittedFull,
NativeOutputNoteState::Consumed { .. } => OutputNoteState::Consumed,
}
}
}