[][src]Enum bolt_client::Value

pub enum Value {
    Boolean(bool),
    Integer(Integer),
    Float(f64),
    List(List),
    Map(Map),
    Null,
    String(String),
    Node(Node),
    Relationship(Relationship),
    Path(Path),
    UnboundRelationship(UnboundRelationship),
}

Variants

Boolean(bool)
Integer(Integer)
Float(f64)
List(List)
Map(Map)
Null
String(String)
Node(Node)
Relationship(Relationship)
Path(Path)
UnboundRelationship(UnboundRelationship)

Trait Implementations

impl Clone for Value[src]

impl Debug for Value[src]

impl Deserialize for Value[src]

impl Eq for Value[src]

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

impl<K, V> From<HashMap<K, V, RandomState>> for Value where
    K: Into<Value>,
    V: Into<Value>, 
[src]

impl From<Node> for Value[src]

impl From<Path> for Value[src]

impl From<Relationship> for Value[src]

impl From<String> for Value[src]

impl From<UnboundRelationship> for Value[src]

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

impl From<bool> for Value[src]

impl From<f64> for Value[src]

impl From<i16> for Value[src]

impl From<i32> for Value[src]

impl From<i64> for Value[src]

impl From<i8> for Value[src]

impl Hash for Value[src]

impl Marker for Value[src]

impl PartialEq<Value> for Value[src]

impl Serialize for Value[src]

impl StructuralPartialEq for Value[src]

impl TryFrom<Arc<Mutex<Bytes>>> for Value[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Value> for UnboundRelationship[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Value> for Path[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Value> for Node[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Value> for Relationship[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryInto<Bytes> for Value[src]

type Error = Error

The type returned in the event of a conversion error.

impl<K, V> TryInto<HashMap<K, V, RandomState>> for Value where
    K: Hash + Eq + TryFrom<Value, Error = Error>,
    V: TryFrom<Value, Error = Error>, 
[src]

type Error = Error

The type returned in the event of a conversion error.

impl<K> TryInto<HashMap<K, Value, RandomState>> for Value where
    K: Hash + Eq + TryFrom<Value, Error = Error>, 
[src]

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryInto<Vec<T>> for Value where
    T: TryFrom<Value, Error = Error>, 
[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryInto<Vec<Value>> for Value[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Value

impl Send for Value

impl Sync for Value

impl Unpin for Value

impl UnwindSafe for Value

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.