Expand description
Reexports of types from encoding-types crate.
Re-exports§
pub use super::decode;
Structs§
- Codec
Error - Error information from either encoder or decoder.
Enums§
- Decoder
Trap - Trap, which handles decoder errors.
- Encoder
Trap
Traits§
- Byte
Writer - Byte writer used by encoders. In most cases this will be an owned vector of
u8
. - Encoding
- Character encoding.
- RawDecoder
- Decoder converting a byte sequence into a Unicode string.
This is a lower level interface, and normally
Encoding::decode
should be used instead. - RawEncoder
- Encoder converting a Unicode string into a byte sequence.
This is a lower level interface, and normally
Encoding::encode
should be used instead. - String
Writer - String writer used by decoders. In most cases this will be an owned string.
Type Aliases§
- Decoder
Trap Func - A type of the bare function in
DecoderTrap
values. - Encoder
Trap Func - A type of the bare function in
EncoderTrap
values. - Encoding
Ref - A trait object using dynamic dispatch which is a sendable reference to the encoding, for code where the encoding is not known at compile-time.