pub trait PdfPageAnnotationCommon {
    fn bounds(&self) -> Result<PdfRect, PdfiumError>;
}
Expand description

Functionality common to all PdfPageAnnotation objects, regardless of their PdfPageAnnotationType.

Required Methods

Returns the bounding box of this PdfPageAnnotation.

Implementors