pub struct RawTag<'a>(pub &'a [u8]);Expand description
A tag value.
Provides helper methods for decoding backslash escaped values.
A quote inside a string is represented by the backslash immediately followed by a quote. A backslash inside a string is represented by two adjacent backslashes.
Tuple Fields§
§0: &'a [u8]Implementations§
Source§impl<'a> RawTag<'a>
impl<'a> RawTag<'a>
Sourcepub fn decode(&self) -> Cow<'a, [u8]>
pub fn decode(&self) -> Cow<'a, [u8]>
Decodes escaped quotes and backslashes into bytes. Allocates only when the value actually contains escape sequences.
Sourcepub fn decode_utf8(&self) -> Result<Cow<'a, str>, Utf8Error>
pub fn decode_utf8(&self) -> Result<Cow<'a, str>, Utf8Error>
Tries to decode the tag as UTF-8. This is guaranteed to succeed on valid PGNs.
§Errors
Errors if the tag contains an invalid UTF-8 byte sequence.
Sourcepub fn decode_utf8_lossy(&self) -> Cow<'a, str>
pub fn decode_utf8_lossy(&self) -> Cow<'a, str>
Decodes the tag as UTF-8, replacing any invalid byte sequences with the placeholder � U+FFFD.
Trait Implementations§
impl<'a> Copy for RawTag<'a>
impl<'a> Eq for RawTag<'a>
impl<'a> StructuralPartialEq for RawTag<'a>
Auto Trait Implementations§
impl<'a> Freeze for RawTag<'a>
impl<'a> RefUnwindSafe for RawTag<'a>
impl<'a> Send for RawTag<'a>
impl<'a> Sync for RawTag<'a>
impl<'a> Unpin for RawTag<'a>
impl<'a> UnwindSafe for RawTag<'a>
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