pub enum Encoding {
Latin1,
UTF16,
UTF16BE,
UTF8,
}Expand description
Types of text encodings used in ID3 frames.
Variants§
Latin1
ISO-8859-1 text encoding, also referred to as latin1 encoding.
UTF16
UTF-16 text encoding with a byte order mark.
UTF16BE
UTF-16BE text encoding without a byte order mark. This encoding is only used in id3v2.4.
UTF8
UTF-8 text encoding. This encoding is only used in id3v2.4.
Trait Implementations§
Source§impl Ord for Encoding
impl Ord for Encoding
Source§impl PartialOrd for Encoding
impl PartialOrd for Encoding
impl Copy for Encoding
impl Eq for Encoding
impl StructuralPartialEq for Encoding
Auto Trait Implementations§
impl Freeze for Encoding
impl RefUnwindSafe for Encoding
impl Send for Encoding
impl Sync for Encoding
impl Unpin for Encoding
impl UnwindSafe for Encoding
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