pub struct char_p_ref<'lt>(/* private fields */);
Expand description

A #[repr(c)] null-terminated UTF-8 encoded string, for compatibility with both the C char * API and Rust’s str.

This is a borrowed version, i.e., with the semantics of &'lt CStr / &'lt str, but for it being a slim pointer.

§C Layout

Implementations§

source§

impl char_p_ref<'static>

source

pub const EMPTY: Self = _

source§

impl<'lt> char_p_ref<'lt>

source

pub const unsafe fn from_ptr_unchecked(ptr: NonNull<u8>) -> Self

source§

impl<'lt> char_p_ref<'lt>

source

pub fn bytes(self: char_p_ref<'lt>) -> impl Iterator<Item = NonZeroU8> + 'lt

source

pub fn to_nonzero_bytes(self: char_p_ref<'lt>) -> &'lt [NonZeroU8]

source

pub fn to_bytes(self: char_p_ref<'lt>) -> &'lt [u8]

source

pub fn to_bytes_with_null(self: char_p_ref<'lt>) -> &'lt [u8]

source

pub fn to_str(self: char_p_ref<'lt>) -> &'lt str

source

pub fn to_str_with_null(self: char_p_ref<'lt>) -> &'lt str

source

pub fn to_string(&self) -> String

Available on crate feature alloc only.

Poor-man’s specialization of ToString::to_string()

source

pub fn to_owned(self: char_p_ref<'lt>) -> char_p_boxed

Available on crate feature alloc only.

Trait Implementations§

source§

impl<'lt> Clone for char_p_ref<'lt>

source§

fn clone(&self) -> char_p_ref<'lt>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for char_p_ref<'_>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for char_p_ref<'_>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'lt> From<&'lt CStr> for char_p_ref<'lt>

Available on crate feature std only.

§Panic

Panics if the CStr is not valid UTF-8.

source§

fn from(s: &'lt CStr) -> char_p_ref<'lt>

Converts to this type from the input type.
source§

impl<'lt> From<char_p_ref<'lt>> for char_p_raw

source§

fn from(it: char_p_ref<'lt>) -> char_p_raw

Converts to this type from the input type.
source§

impl<'lt> PartialEq for char_p_ref<'lt>

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'lt> ReprC for char_p_ref<'lt>

§

type CLayout = <NonNullRef<c_char> as ReprC>::CLayout

The CType having the same layout as Self.
source§

fn is_valid(it: &Self::CLayout) -> bool

Sanity checks that can be performed on an instance of the CType layout. Read more
source§

impl<'lt> TryFrom<&'lt str> for char_p_ref<'lt>

§

type Error = InvalidNulTerminator<()>

The type returned in the event of a conversion error.
source§

fn try_from(s: &'lt str) -> Result<char_p_ref<'lt>, InvalidNulTerminator<()>>

Performs the conversion.
source§

impl<'lt> Copy for char_p_ref<'lt>

source§

impl<'lt> Eq for char_p_ref<'lt>

source§

impl Send for char_p_ref<'_>
where for<'lt> &'lt [u8]: Send,

source§

impl Sync for char_p_ref<'_>
where for<'lt> &'lt [u8]: Sync,

Auto Trait Implementations§

§

impl<'lt> Freeze for char_p_ref<'lt>

§

impl<'lt> RefUnwindSafe for char_p_ref<'lt>

§

impl<'lt> Unpin for char_p_ref<'lt>

§

impl<'lt> UnwindSafe for char_p_ref<'lt>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AsOut<T> for T
where T: Copy,

source§

fn as_out<'out>(&'out mut self) -> Out<'out, T>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CompatExt for T

source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
source§

impl<T> ConcreteReprC for T
where <T as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>, T: ReprC + ?Sized,

source§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

Available on crate feature alloc only.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

source§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UpcastAny for T
where T: 'static,

source§

fn upcast_any(&self) -> &(dyn Any + 'static)

Available on crate feature headers only.