Struct rmpv::Utf8StringRef
source · [−]pub struct Utf8StringRef<'a> { /* private fields */ }Expand description
A non-owning evil twin of Utf8String. Does exactly the same thing except ownership.
Implementations
sourceimpl<'a> Utf8StringRef<'a>
impl<'a> Utf8StringRef<'a>
sourcepub fn as_str(&self) -> Option<&str>
pub fn as_str(&self) -> Option<&str>
Returns the string reference if the string is valid UTF-8, or else None.
sourcepub fn as_err(&self) -> Option<&Utf8Error>
pub fn as_err(&self) -> Option<&Utf8Error>
Returns the underlying Utf8Error if the string contains invalud UTF-8 sequence, or
else None.
sourcepub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
pub fn as_bytes(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
Returns a byte slice of this string contents no matter whether it’s valid or not UTF-8.
Trait Implementations
sourceimpl<'a> Clone for Utf8StringRef<'a>
impl<'a> Clone for Utf8StringRef<'a>
sourcefn clone(&self) -> Utf8StringRef<'a>
fn clone(&self) -> Utf8StringRef<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'a> Debug for Utf8StringRef<'a>
impl<'a> Debug for Utf8StringRef<'a>
sourceimpl<'a> Display for Utf8StringRef<'a>
impl<'a> Display for Utf8StringRef<'a>
sourceimpl<'a> From<&'a str> for Utf8StringRef<'a>
impl<'a> From<&'a str> for Utf8StringRef<'a>
sourceimpl<'a> Into<Utf8String> for Utf8StringRef<'a>
impl<'a> Into<Utf8String> for Utf8StringRef<'a>
sourcefn into(self) -> Utf8String
fn into(self) -> Utf8String
Converts this type into the (usually inferred) input type.
sourceimpl<'a> PartialEq<Utf8StringRef<'a>> for Utf8StringRef<'a>
impl<'a> PartialEq<Utf8StringRef<'a>> for Utf8StringRef<'a>
sourcefn eq(&self, other: &Utf8StringRef<'a>) -> bool
fn eq(&self, other: &Utf8StringRef<'a>) -> bool
impl<'a> Copy for Utf8StringRef<'a>
impl<'a> StructuralPartialEq for Utf8StringRef<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Utf8StringRef<'a>
impl<'a> Send for Utf8StringRef<'a>
impl<'a> Sync for Utf8StringRef<'a>
impl<'a> Unpin for Utf8StringRef<'a>
impl<'a> UnwindSafe for Utf8StringRef<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more