1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use crate::bindgen::FPDF_ANNOTATION;
use crate::bindings::PdfiumLibraryBindings;
use crate::page_annotation::internal::PdfPageAnnotationPrivate;
use crate::page_annotation::PdfPageAnnotationType;
use crate::page_annotations::PdfPageAnnotationIndex;
pub struct PdfPageUnsupportedAnnotation<'a> {
index: PdfPageAnnotationIndex,
annotation_type: PdfPageAnnotationType,
handle: FPDF_ANNOTATION,
bindings: &'a dyn PdfiumLibraryBindings,
}
impl<'a> PdfPageUnsupportedAnnotation<'a> {
pub(crate) fn from_pdfium(
index: PdfPageAnnotationIndex,
annotation_type: PdfPageAnnotationType,
handle: FPDF_ANNOTATION,
bindings: &'a dyn PdfiumLibraryBindings,
) -> Self {
PdfPageUnsupportedAnnotation {
index,
annotation_type,
handle,
bindings,
}
}
#[inline]
pub fn get_type(&self) -> PdfPageAnnotationType {
self.annotation_type
}
}
impl<'a> PdfPageAnnotationPrivate for PdfPageUnsupportedAnnotation<'a> {
#[inline]
fn get_handle(&self) -> &FPDF_ANNOTATION {
&self.handle
}
#[inline]
fn index_impl(&self) -> PdfPageAnnotationIndex {
self.index
}
#[inline]
fn get_bindings(&self) -> &dyn PdfiumLibraryBindings {
self.bindings
}
}