Docs.rs
pdf-extract-0.9.0
pdf-extract 0.9.0
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
jrmuizel
Dependencies
adobe-cmap-parser ^0.4.1
normal
cff-parser ^0.1.0
normal
encoding_rs ^0.8.34
normal
euclid ^0.20.5
normal
log ^0.4.22
normal
lopdf ^0.36
normal
postscript ^0.14
normal
type1-encoding-parser ^0.1.0
normal
unicode-normalization ^0.1.19
normal
simple_logger ^5
dev
test-log ^0.2.17
dev
ureq ^2.6.2
dev
Versions
4.05%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
pdf_
extract
0.9.0
Convert
ToFmt
Required Associated Types
Writer
Required Methods
convert
Implementations on Foreign Types
&'a mut File
&'a mut String
&'a mut dyn Write
Implementors
In crate pdf_
extract
pdf_extract
Trait
ConvertToFmt
Copy item path
Source
pub trait ConvertToFmt { type
Writer
:
Write
; // Required method fn
convert
(self) -> Self::
Writer
; }
Required Associated Types
§
Source
type
Writer
:
Write
Required Methods
§
Source
fn
convert
(self) -> Self::
Writer
Implementations on Foreign Types
§
Source
§
impl<'a>
ConvertToFmt
for &'a mut
String
Source
§
type
Writer
= &'a mut
String
Source
§
fn
convert
(self) -> Self::
Writer
Source
§
impl<'a>
ConvertToFmt
for &'a mut
File
Source
§
type
Writer
=
WriteAdapter
<&'a mut
File
>
Source
§
fn
convert
(self) -> Self::
Writer
Source
§
impl<'a>
ConvertToFmt
for &'a mut dyn
Write
Source
§
type
Writer
=
WriteAdapter
<&'a mut dyn
Write
>
Source
§
fn
convert
(self) -> Self::
Writer
Implementors
§