pub struct PdfAnnotationInfo {
pub annotation_type: Option<String>,
pub bounds: PdfRect,
pub contents: Option<String>,
pub should_display: bool,
pub should_print: bool,
pub has_appearance_stream: bool,
pub user_name: Option<String>,
pub modification_date: Option<String>,
pub color: Option<PdfColor>,
pub highlighted: bool,
pub action_type: Option<String>,
pub border: Option<PdfBorderInfo>,
}Fields§
§annotation_type: Option<String>§bounds: PdfRect§contents: Option<String>§should_display: bool§should_print: bool§has_appearance_stream: bool§user_name: Option<String>§modification_date: Option<String>§color: Option<PdfColor>§highlighted: bool§action_type: Option<String>§border: Option<PdfBorderInfo>Trait Implementations§
Source§impl Clone for PdfAnnotationInfo
impl Clone for PdfAnnotationInfo
Source§fn clone(&self) -> PdfAnnotationInfo
fn clone(&self) -> PdfAnnotationInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PdfAnnotationInfo
impl Debug for PdfAnnotationInfo
Source§impl<'de> Deserialize<'de> for PdfAnnotationInfo
impl<'de> Deserialize<'de> for PdfAnnotationInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PdfAnnotationInfo
impl RefUnwindSafe for PdfAnnotationInfo
impl Send for PdfAnnotationInfo
impl Sync for PdfAnnotationInfo
impl Unpin for PdfAnnotationInfo
impl UnsafeUnpin for PdfAnnotationInfo
impl UnwindSafe for PdfAnnotationInfo
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