pdfium-render 0.7.27

A high-level idiomatic Rust wrapper around Pdfium, the C++ PDF library used by the Google Chromium project.
Documentation
//! Defines the [PdfActionDestination] struct, exposing functionality related to the
//! destination of a single `PdfAction`.

pub enum PdfActionDestination {
    LocalDestination(PdfActionLocalDestination),
    RemoteDestination(PdfActionRemoteDestination),
    EmbeddedDestination(PdfActionEmbeddedDestination),
    Launch(PdfActionLaunchDestination),
    Uri(PdfActionURIDestination),
}

pub struct PdfActionLocalDestination {}

pub struct PdfActionRemoteDestination {}

pub struct PdfActionEmbeddedDestination {}

pub struct PdfActionLaunchDestination {}

pub struct PdfActionURIDestination {}