pub struct EncodeRef<'a, T>(pub &'a T);
Expand description
Reference encoder: wrapper type which impls Encode
for any reference to a
type which impls the same.
Tuple Fields§
§0: &'a T
Trait Implementations§
Source§impl<'a, T> Encode for EncodeRef<'a, T>where
T: Encode,
impl<'a, T> Encode for EncodeRef<'a, T>where
T: Encode,
Source§fn encoded_len(&self) -> Result<Length>
fn encoded_len(&self) -> Result<Length>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<()>
fn encode(&self, writer: &mut impl Writer) -> Result<()>
Encode this value as ASN.1 DER using the provided
Writer
.Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8]>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.
Auto Trait Implementations§
impl<'a, T> Freeze for EncodeRef<'a, T>
impl<'a, T> RefUnwindSafe for EncodeRef<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for EncodeRef<'a, T>where
T: Sync,
impl<'a, T> Sync for EncodeRef<'a, T>where
T: Sync,
impl<'a, T> Unpin for EncodeRef<'a, T>
impl<'a, T> UnwindSafe for EncodeRef<'a, T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes