Docs.rs
x509-parser-0.13.2
x509-parser 0.13.2
Docs.rs crate page
MIT
/
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
chifflier
Dependencies
asn1-rs ^0.3
normal
base64 ^0.13
normal
data-encoding ^2.2.1
normal
der-parser ^7.0.0
normal
lazy_static ^1.4
normal
nom ^7.0
normal
oid-registry ^0.4
normal
ring ^0.16.11
normal
rusticata-macros ^4.0
normal
thiserror ^1.0.2
normal
time ^0.3.7
normal
Versions
48.91%
of the crate is documented
Go to latest version
Platform
i686-unknown-linux-gnu
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
☰
Logger
Required Methods
err
warn
Implementors
In x509_parser::validate
?
Trait
x509_parser
::
validate
::
Logger
source
·
[
−
]
pub trait Logger { fn
warn
(&mut self, message: &
str
);
fn
err
(&mut self, message: &
str
); }
This is supported on
crate feature
validate
only.
Required methods
source
fn
warn
(&mut self, message: &
str
)
source
fn
err
(&mut self, message: &
str
)
Implementors
source
impl
Logger
for
StderrLogger
source
impl
Logger
for
VecLogger
source
impl<W, E>
Logger
for
CallbackLogger
<W, E>
where
W:
FnMut
(&
str
),
E:
FnMut
(&
str
),