pub trait ScrollIntoViewUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ScrollIntoViewInput,
) -> Result<ScrollIntoViewOutput, SessionError>;
}pub trait ScrollIntoViewUseCase: Send + Sync {
// Required method
fn execute(
&self,
input: ScrollIntoViewInput,
) -> Result<ScrollIntoViewOutput, SessionError>;
}