Trait eagre_asn1::xer::XEREncodeable
[−]
[src]
pub trait XEREncodeable {
fn xer_encode_content<W: Write>(&self, stream: &mut W) -> Result<()>;
fn xer_name(&self) -> String;
fn xer_encode<W: Write>(&self, stream: &mut W) -> Result<()> { ... }
}Deprecated!
Required Methods
fn xer_encode_content<W: Write>(&self, stream: &mut W) -> Result<()>
Encode content
fn xer_name(&self) -> String
Tag name
Provided Methods
fn xer_encode<W: Write>(&self, stream: &mut W) -> Result<()>
Encode full tag
Implementors
impl XEREncodeable for boolimpl XEREncodeable for Stringimpl XEREncodeable for i32impl<T: XEREncodeable> XEREncodeable for Vec<T>