[][src]Struct elastic_types::string::Text

pub struct Text<TMapping> where
    TMapping: TextMapping
{ /* fields omitted */ }

An Elasticsearch text field with a mapping.

Where the mapping isn't custom, you can use the standard library String instead.

Examples

Defining a text field with a mapping:

use elastic_types::string::text::mapping::DefaultTextMapping;
use elastic_types::string::text::Text;

let string = Text::<DefaultTextMapping>::new("my string value");

Methods

impl<TMapping> Text<TMapping> where
    TMapping: TextMapping
[src]

pub fn new<I>(string: I) -> Text<TMapping> where
    I: Into<String>, 
[src]

Creates a new Text with the given mapping.

Examples

Create a new Text from a String:

use elastic_types::string::text::mapping::DefaultTextMapping;
use elastic_types::string::text::Text;

let string = Text::<DefaultTextMapping>::new("my string");

pub fn remap<TNewMapping>(text: Text<TMapping>) -> Text<TNewMapping> where
    TNewMapping: TextMapping
[src]

Change the mapping of this string.

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<TMapping> TextFieldType<TMapping> for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<TMapping> AsRef<str> for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<TMapping: PartialEq> PartialEq<Text<TMapping>> for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<M> PartialEq<String> for Text<M> where
    M: TextMapping
[src]

impl<M> PartialEq<Text<M>> for String where
    M: TextMapping
[src]

impl<'a, TMapping> PartialEq<&'a str> for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<'a, TMapping> PartialEq<Text<TMapping>> for &'a str where
    TMapping: TextMapping
[src]

impl<TMapping: Clone> Clone for Text<TMapping> where
    TMapping: TextMapping
[src]

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

Performs copy-assignment from source. Read more

impl<M> From<String> for Text<M> where
    M: TextMapping
[src]

impl<'a, TMapping> From<Text<TMapping>> for String where
    TMapping: TextMapping
[src]

impl<'a, TMapping> From<&'a Text<TMapping>> for Cow<'a, str> where
    TMapping: TextMapping
[src]

impl<'a, TMapping> From<Text<TMapping>> for Cow<'a, str> where
    TMapping: TextMapping
[src]

impl<TMapping: Default> Default for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<TMapping: Debug> Debug for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<M> Deref for Text<M> where
    M: TextMapping
[src]

type Target = String

The resulting type after dereferencing.

impl<M> Borrow<String> for Text<M> where
    M: TextMapping
[src]

impl<TMapping> Serialize for Text<TMapping> where
    TMapping: TextMapping
[src]

impl<'de, TMapping> Deserialize<'de> for Text<TMapping> where
    TMapping: TextMapping
[src]

Auto Trait Implementations

impl<TMapping> Send for Text<TMapping> where
    TMapping: Send

impl<TMapping> Sync for Text<TMapping> where
    TMapping: Sync

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,