Docs.rs
x509-parser-0.14.0
x509-parser 0.14.0
Docs.rs crate page
MIT/Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
chifflier
Dependencies
asn1-rs ^0.5
normal
base64 ^0.13
normal
data-encoding ^2.2.1
normal
der-parser ^8.1.0
normal
lazy_static ^1.4
normal
nom ^7.0
normal
oid-registry ^0.6
normal
ring ^0.16.11
normal
rusticata-macros ^4.0
normal
thiserror ^1.0.2
normal
time ^0.3.7
normal
Versions
48.75%
of the crate is documented
Go to latest version
Platform
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
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
); }
Available 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
),