[][src]Struct finalfusion::metadata::Metadata

pub struct Metadata { /* fields omitted */ }

Embeddings metadata.

finalfusion metadata in TOML format.

Methods

impl Metadata[src]

pub fn new(data: Value) -> Self[src]

Construct new Metadata.

Methods from Deref<Target = Value>

pub fn get<I>(&self, index: I) -> Option<&Value> where
    I: Index
[src]

Index into a TOML array or map. A string index can be used to access a value in a map, and a usize index can be used to access an element of an array.

Returns None if the type of self does not match the type of the index, for example if the index is a string and self is an array or a number. Also returns None if the given key does not exist in the map or the given index is not within the bounds of the array.

pub fn get_mut<I>(&mut self, index: I) -> Option<&mut Value> where
    I: Index
[src]

Mutably index into a TOML array or map. A string index can be used to access a value in a map, and a usize index can be used to access an element of an array.

Returns None if the type of self does not match the type of the index, for example if the index is a string and self is an array or a number. Also returns None if the given key does not exist in the map or the given index is not within the bounds of the array.

pub fn as_integer(&self) -> Option<i64>[src]

Extracts the integer value if it is an integer.

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

Tests whether this value is an integer.

pub fn as_float(&self) -> Option<f64>[src]

Extracts the float value if it is a float.

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

Tests whether this value is a float.

pub fn as_bool(&self) -> Option<bool>[src]

Extracts the boolean value if it is a boolean.

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

Tests whether this value is a boolean.

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

Extracts the string of this value if it is a string.

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

Tests if this value is a string.

pub fn as_datetime(&self) -> Option<&Datetime>[src]

Extracts the datetime value if it is a datetime.

Note that a parsed TOML value will only contain ISO 8601 dates. An example date is:

1979-05-27T07:32:00Z

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

Tests whether this value is a datetime.

pub fn as_array(&self) -> Option<&Vec<Value>>[src]

Extracts the array value if it is an array.

pub fn as_array_mut(&mut self) -> Option<&mut Vec<Value>>[src]

Extracts the array value if it is an array.

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

Tests whether this value is an array.

pub fn as_table(&self) -> Option<&Map<String, Value>>[src]

Extracts the table value if it is a table.

pub fn as_table_mut(&mut self) -> Option<&mut Map<String, Value>>[src]

Extracts the table value if it is a table.

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

Tests whether this value is a table.

pub fn same_type(&self, other: &Value) -> bool[src]

Tests whether this and another value have the same type.

pub fn type_str(&self) -> &'static str[src]

Returns a human-readable representation of the type of this value.

Trait Implementations

impl Clone for Metadata[src]

impl Debug for Metadata[src]

impl Deref for Metadata[src]

type Target = Value

The resulting type after dereferencing.

impl DerefMut for Metadata[src]

impl From<Value> for Metadata[src]

impl PartialEq<Metadata> for Metadata[src]

impl StructuralPartialEq for Metadata[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> 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>,