[][src]Struct libpijul::small_string::SmallStr

pub struct SmallStr<'a> {
    pub p: *const u8,
    pub marker: PhantomData<&'a ()>,
}

A borrowed version of SmallStr.

Fields

p: *const u8marker: PhantomData<&'a ()>

Implementations

impl SmallStr<'static>[src]

pub const EMPTY: SmallStr<'static>[src]

impl<'a> SmallStr<'a>[src]

pub fn is_empty(&self) -> bool[src]

This example is not tested
use libpijul::small_string::*;
let mut s = SmallString::from_str("");
assert!(s.as_small_str().is_empty());
s.push_str("blah");
assert!(!s.as_small_str().is_empty());

pub fn len(&self) -> usize[src]

This example is not tested
use libpijul::small_string::*;
let mut s = SmallString::from_str("blah");
assert_eq!(s.as_small_str().len(), "blah".len())

pub fn as_str(&self) -> &'a str[src]

pub fn as_bytes(&self) -> &'a [u8][src]

pub fn to_owned(&self) -> SmallString[src]

Trait Implementations

impl<'a> Clone for SmallStr<'a>[src]

impl<'a> Copy for SmallStr<'a>[src]

impl<'a> Debug for SmallStr<'a>[src]

impl<'a> Eq for SmallStr<'a>[src]

impl<'a> Ord for SmallStr<'a>[src]

impl<'a> PartialEq<SmallStr<'a>> for SmallStr<'a>[src]

impl<'a> PartialOrd<SmallStr<'a>> for SmallStr<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SmallStr<'a>

impl<'a> !Send for SmallStr<'a>

impl<'a> !Sync for SmallStr<'a>

impl<'a> Unpin for SmallStr<'a>

impl<'a> UnwindSafe for SmallStr<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,