pub struct PdfiumSearch { /* private fields */ }Expand description
§Rust interface to FPDF_SCHHANDLE
Implementations§
Source§impl PdfiumSearch
impl PdfiumSearch
Sourcepub fn find_next(&self) -> bool
pub fn find_next(&self) -> bool
Search in the direction from page start to end.
Returns:
- Whether a match is found.
Sourcepub fn find_prev(&self) -> bool
pub fn find_prev(&self) -> bool
Search in the direction from page end to start.
Returns:
- Whether a match is found.
Trait Implementations§
Source§impl Clone for PdfiumSearch
impl Clone for PdfiumSearch
Source§fn clone(&self) -> PdfiumSearch
fn clone(&self) -> PdfiumSearch
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PdfiumSearch
impl Debug for PdfiumSearch
Source§impl From<&PdfiumSearch> for FPDF_SCHHANDLE
impl From<&PdfiumSearch> for FPDF_SCHHANDLE
Source§fn from(search: &PdfiumSearch) -> Self
fn from(search: &PdfiumSearch) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PdfiumSearch
impl RefUnwindSafe for PdfiumSearch
impl !Send for PdfiumSearch
impl !Sync for PdfiumSearch
impl Unpin for PdfiumSearch
impl UnwindSafe for PdfiumSearch
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