Trait PdfViewDelegate
Source pub trait PdfViewDelegate: 'static {
// Provided methods
fn handle_link_click(&mut self, _view: PdfView, _url: &str) -> bool { ... }
fn will_change_scale_factor(
&mut self,
_view: PdfView,
scale_factor: f64,
) -> f64 { ... }
fn print_job_title(&mut self, _view: PdfView) -> Option<String> { ... }
fn perform_print(&mut self, _view: PdfView) -> bool { ... }
fn perform_find(&mut self, _view: PdfView) -> bool { ... }
fn perform_go_to_page(&mut self, _view: PdfView) -> bool { ... }
fn open_pdf_for_remote_goto_action(
&mut self,
_view: PdfView,
_action: PdfActionRemoteGoTo,
) -> bool { ... }
}