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 bool
impl XEREncodeable for String
impl XEREncodeable for i32
impl<T: XEREncodeable> XEREncodeable for Vec<T>