This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- before/asn1_lib/src/reuse_sw/code_for_re_use/rf_cs/asn1/asn1_content.rs | |
| +++ after/asn1_lib/src/reuse_sw/code_for_re_use/rf_cs/asn1/asn1_content.rs | |
| @@ -51,7 +51,7 @@ | |
| } | |
| // C++: IASN1::tASN1StatusEnum ReuseLibrary::ASN1_Content::getEncodedContent(tUINT8 * & pContent, tUINT32 & numElementContentOctets, tUINT32 & numElementOctets) | |
| - fn getEncodedContent(&mut self, pContent: &mut Option<Box<u8>>, numElementContentOctets: &mut u32, numElementOctets: &mut u32) -> reuse_library::tASN1StatusEnum { | |
| + fn getEncodedContent<'a>(&'a mut self, pContent: &mut Option<&'a [u8]>, numElementContentOctets: &mut u32, numElementOctets: &mut u32) -> reuse_library::tASN1StatusEnum { | |
| todo!("ReuseLibrary::ASN1_Content::getEncodedContent"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- before/asn1_lib/src/reuse_sw/code_for_re_use/rf_cs/asn1/asn1_content.rs | |
| +++ after/asn1_lib/src/reuse_sw/code_for_re_use/rf_cs/asn1/asn1_content.rs | |
| @@ -56,12 +56,12 @@ | |
| } | |
| // C++: IASN1::tASN1StatusEnum ReuseLibrary::ASN1_Content::getEncodedContent(tUINT8 * & pContent, tUINT32 & numElementContentOctets, tUINT32 & numElementOctets) | |
| - fn getEncodedContent(&mut self, pContent: &mut Option<Box<u8>>, numElementContentOctets: &mut u32, numElementOctets: &mut u32) -> reuse_library::tASN1StatusEnum { | |
| + fn getEncodedContent<'a>(&'a mut self, pContent: &mut Option<&'a [u8]>, numElementContentOctets: &mut u32, numElementOctets: &mut u32) -> reuse_library::tASN1StatusEnum { | |
| todo!("ReuseLibrary::ASN1_Content::getEncodedContent"); | |
| } |