Enum miden_client::notes::NoteScreenerError
source · pub enum NoteScreenerError {
InvalidNoteInputsError(InvalidNoteInputsError),
StoreError(StoreError),
}Expand description
Error when screening notes to check relevance to a client
Variants§
InvalidNoteInputsError(InvalidNoteInputsError)
StoreError(StoreError)
Trait Implementations§
source§impl Debug for NoteScreenerError
impl Debug for NoteScreenerError
source§impl Display for NoteScreenerError
impl Display for NoteScreenerError
source§impl From<NoteScreenerError> for ClientError
impl From<NoteScreenerError> for ClientError
source§fn from(err: NoteScreenerError) -> Self
fn from(err: NoteScreenerError) -> Self
Converts to this type from the input type.
source§impl From<StoreError> for NoteScreenerError
impl From<StoreError> for NoteScreenerError
source§fn from(error: StoreError) -> Self
fn from(error: StoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NoteScreenerError
impl !RefUnwindSafe for NoteScreenerError
impl Send for NoteScreenerError
impl Sync for NoteScreenerError
impl Unpin for NoteScreenerError
impl !UnwindSafe for NoteScreenerError
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