[][src]Struct diesel_citext::types::CiString

pub struct CiString { /* fields omitted */ }

CiString is a CaseInsenstive String type that can be used as the key for a hashmap as well as be written to the page. It implements a variety of traits to make it easy to convert from and to &str and String types.

Methods

impl CiString[src]

pub fn new() -> Self[src]

Methods from Deref<Target = String>

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

Extracts a string slice containing the entire String.

Examples

Basic usage:

let s = String::from("foo");

assert_eq!("foo", s.as_str());

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

Returns this String's capacity, in bytes.

Examples

Basic usage:

let s = String::with_capacity(10);

assert!(s.capacity() >= 10);

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

Returns a byte slice of this String's contents.

The inverse of this method is from_utf8.

Examples

Basic usage:

let s = String::from("hello");

assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());

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

Returns the length of this String, in bytes.

Examples

Basic usage:

let a = String::from("foo");

assert_eq!(a.len(), 3);

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

Returns true if this String has a length of zero, and false otherwise.

Examples

Basic usage:

let mut v = String::new();
assert!(v.is_empty());

v.push('a');
assert!(!v.is_empty());

Trait Implementations

impl Clone for CiString[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<String> for CiString[src]

impl<'_> From<&'_ str> for CiString[src]

impl Eq for CiString[src]

impl Into<String> for CiString[src]

impl PartialEq<CiString> for CiString[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl PartialEq<String> for CiString[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<'_> PartialEq<&'_ str> for CiString[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl AsRef<str> for CiString[src]

impl Display for CiString[src]

impl Debug for CiString[src]

impl FromStr for CiString[src]

type Err = Error

The associated error which can be returned from parsing.

impl Deref for CiString[src]

type Target = String

The resulting type after dereferencing.

impl Hash for CiString[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Borrow<str> for CiString[src]

impl<__ST, __DB> Queryable<__ST, __DB> for CiString where
    __DB: Backend,
    Self: FromSql<__ST, __DB>, 
[src]

type Row = Self

The Rust type you'd like to map from. Read more

impl<'expr> AsExpression<Citext> for &'expr CiString[src]

type Expression = Bound<Citext, Self>

The expression being returned

impl<'expr> AsExpression<Nullable<Citext>> for &'expr CiString[src]

type Expression = Bound<Nullable<Citext>, Self>

The expression being returned

impl AsExpression<Citext> for CiString[src]

type Expression = Bound<Citext, Self>

The expression being returned

impl AsExpression<Nullable<Citext>> for CiString[src]

type Expression = Bound<Nullable<Citext>, Self>

The expression being returned

impl<__DB> ToSql<Nullable<Citext>, __DB> for CiString where
    __DB: Backend,
    Self: ToSql<Citext, __DB>, 
[src]

impl ToSql<Citext, Pg> for CiString[src]

impl FromSql<Citext, Pg> for CiString[src]

impl<__ST, __DB> FromSqlRow<__ST, __DB> for CiString where
    __DB: Backend,
    Self: FromSql<__ST, __DB>, 
[src]

const FIELDS_NEEDED: usize[src]

The number of fields that this type will consume. Must be equal to the number of times you would call row.take() in build_from_row Read more

impl Serialize for CiString[src]

impl<'de> Deserialize<'de> for CiString[src]

Auto Trait Implementations

impl Send for CiString

impl Sync for CiString

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]