[][src]Struct libpijul::small_string::SmallString

#[repr(packed)]pub struct SmallString {
    pub len: u8,
    pub str: [u8; 255],
}

A string of length at most 255, with a more compact on-disk encoding.

Fields

len: u8str: [u8; 255]

Implementations

impl SmallString[src]

pub fn new() -> Self[src]

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.len(), s.as_str().len());

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

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

pub fn from_str(s: &str) -> Self[src]

pub fn clone_from_str(&mut self, s: &str)[src]

pub fn clear(&mut self)[src]

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

pub fn push_str(&mut self, s: &str)[src]

pub fn as_small_str(&self) -> SmallStr<'_>[src]

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

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

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

Trait Implementations

impl Clone for SmallString[src]

impl Debug for SmallString[src]

impl Eq for SmallString[src]

impl Hash for SmallString[src]

impl Ord for SmallString[src]

impl PartialEq<SmallString> for SmallString[src]

impl PartialOrd<SmallString> for SmallString[src]

Auto Trait Implementations

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>,