pub type StrTendril = Tendril<UTF8>;Expand description
Tendril for storing native Rust strings.
Aliased Type§
#[repr(C)]pub struct StrTendril {
ptr: Cell<NonZero<usize>>,
buf: UnsafeCell<Buffer>,
marker: PhantomData<*mut UTF8>,
refcount_marker: PhantomData<NonAtomic>,
}Fields§
§ptr: Cell<NonZero<usize>>§buf: UnsafeCell<Buffer>§marker: PhantomData<*mut UTF8>§refcount_marker: PhantomData<NonAtomic>