pub trait VerificationRequestListener: Send {
    // Required method
    fn on_change(&self, state: VerificationRequestState);
}
Expand description

Listener that will be passed over the FFI to report changes to a verification request.

Required Methods§

source

fn on_change(&self, state: VerificationRequestState)

The callback that should be called on the Rust side

§Arguments
  • state - The current state of the verification request.

Trait Implementations§

source§

impl<UT> LiftRef<UT> for Box<dyn VerificationRequestListener>

source§

impl<UT> LiftReturn<UT> for Box<dyn VerificationRequestListener>

§

type ReturnType = <Box<dyn VerificationRequestListener> as Lift<UT>>::FfiType

FFI return type for trait interfaces
source§

fn try_lift_successful_return(v: Self::ReturnType) -> Result<Self>

Lift a successfully returned value from a trait interface
source§

const TYPE_ID_META: MetadataBuffer = _

source§

fn lift_foreign_return( ffi_return: Self::ReturnType, call_status: RustCallStatus ) -> Self

Lift a foreign returned value from a trait interface Read more
source§

fn lift_error(_buf: RustBuffer) -> Self

Lift a Rust value for a callback interface method error result Read more
source§

fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self

Lift a Rust value for an unexpected callback interface error Read more

Implementors§