pub trait ProgressListener {
// Required method
fn on_progress(&self, progress: i32, total: i32);
}
Expand description
Callback that will be passed over the FFI to report progress
Required Methods§
Sourcefn on_progress(&self, progress: i32, total: i32)
fn on_progress(&self, progress: i32, total: i32)
The callback that should be called on the Rust side
§Arguments
-
progress
- The current number of items that have been handled -
total
- The total number of items that will be handled
Trait Implementations§
Source§impl<UT> LiftRef<UT> for Box<dyn ProgressListener>
impl<UT> LiftRef<UT> for Box<dyn ProgressListener>
type LiftType = Box<dyn ProgressListener>
Source§impl<UT> LiftReturn<UT> for Box<dyn ProgressListener>
impl<UT> LiftReturn<UT> for Box<dyn ProgressListener>
Source§type ReturnType = <Box<dyn ProgressListener> as Lift<UT>>::FfiType
type ReturnType = <Box<dyn ProgressListener> as Lift<UT>>::FfiType
FFI return type for trait interfaces
Source§fn try_lift_successful_return(v: Self::ReturnType) -> Result<Self>
fn try_lift_successful_return(v: Self::ReturnType) -> Result<Self>
Lift a successfully returned value from a trait interface
Source§fn lift_foreign_return(
ffi_return: Self::ReturnType,
call_status: RustCallStatus,
) -> Self
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
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
fn handle_callback_unexpected_error(e: UnexpectedUniFFICallbackError) -> Self
Lift a Rust value for an unexpected callback interface error Read more