Macro asn1_cereal::ber_sequence_of_deserialize [] [src]

macro_rules! ber_sequence_of_deserialize {
    (impl: $rs_type:ty) => { ... };
    ($rs_type:ty) => { ... };
    ($rs_type:ty => $gen:ident) => { ... };
    ($rs_type:ty => $gen:ident, $($where_attr:tt)*) => { ... };
}

Implement BerDeserialize for a type, by collecting the elements from an iterator built by calling deserialize_enc on the stream continually.

Requires that the type implement FromIterator, and can be used to implement SEQUENCE/SET OF.