kmip-ttlv 0.3.5

KMIP TTLV (de)serialization
Documentation
1
2
3
4
5
6
7
8
9
10
11
macro_rules! pinpoint {
    ($error:expr, $location:expr) => {
        crate::error::Error::pinpoint($error, $location)
    };
    ($error:expr, $location:expr, $tag:expr) => {
        crate::error::Error::pinpoint_with_tag($error, $location, $tag)
    };
    ($error:expr, $location:expr, $tag:expr, $ty:expr) => {
        crate::error::Error::pinpoint_with_tag_and_type($error, $location, $tag, $ty)
    };
}