[][src]Struct elastic_types::string::keyword::prelude::Keyword

pub struct Keyword<TMapping> where
    TMapping: KeywordMapping
{ /* fields omitted */ }

An Elasticsearch keyword with a mapping.

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

Examples

Defining a keyword with a mapping:

use elastic_types::string::keyword::mapping::DefaultKeywordMapping;
use elastic_types::string::keyword::Keyword;

let string = Keyword::<DefaultKeywordMapping>::new("my string value");

Methods

impl<TMapping> Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

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

Creates a new Keyword with the given mapping.

Examples

Create a new Keyword from a String:

use elastic_types::string::keyword::mapping::DefaultKeywordMapping;
use elastic_types::string::keyword::Keyword;

let string = Keyword::<DefaultKeywordMapping>::new("my string");

pub fn remap<TNewMapping>(keyword: Keyword<TMapping>) -> Keyword<TNewMapping> where
    TNewMapping: KeywordMapping
[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> KeywordFieldType<TMapping> for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<TMapping: Default> Default for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<TMapping: PartialEq> PartialEq<Keyword<TMapping>> for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<M> PartialEq<String> for Keyword<M> where
    M: KeywordMapping
[src]

impl<M> PartialEq<Keyword<M>> for String where
    M: KeywordMapping
[src]

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

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

impl<M> From<String> for Keyword<M> where
    M: KeywordMapping
[src]

impl<'a, TMapping> From<Keyword<TMapping>> for String where
    TMapping: KeywordMapping
[src]

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

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

impl<TMapping> AsRef<str> for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<TMapping: Clone> Clone for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

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

Performs copy-assignment from source. Read more

impl<M> Deref for Keyword<M> where
    M: KeywordMapping
[src]

type Target = String

The resulting type after dereferencing.

impl<TMapping: Debug> Debug for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<M> Borrow<String> for Keyword<M> where
    M: KeywordMapping
[src]

impl<TMapping> Serialize for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

impl<'de, TMapping> Deserialize<'de> for Keyword<TMapping> where
    TMapping: KeywordMapping
[src]

Auto Trait Implementations

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

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

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

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

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