[−][src]Enum bolt_client::Value
Variants
Boolean(bool)Float(f64)String(String)Trait Implementations
impl Clone for Value[src]
impl Debug for Value[src]
impl Deserialize for Value[src]
impl Eq for Value[src]
fn assert_receiver_is_total_eq(&self)[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]
K: Into<Value>,
V: Into<Value>,
fn from(value: HashMap<K, V, RandomState>) -> Value[src]
impl From<Node> for Value[src]
impl From<Path> for Value[src]
impl From<Relationship> for Value[src]
fn from(value: Relationship) -> Value[src]
impl From<String> for Value[src]
impl From<UnboundRelationship> for Value[src]
fn from(value: UnboundRelationship) -> Value[src]
impl<T> From<Vec<T>> for Value where
T: Into<Value>, [src]
T: Into<Value>,
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]
fn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Marker for Value[src]
fn get_marker(&self) -> Result<u8, Error>[src]
impl PartialEq<Value> for Value[src]
impl Serialize for Value[src]
fn try_into_bytes(self) -> Result<Bytes, Error>[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.
fn try_from(input_arc: Arc<Mutex<Bytes>>) -> Result<Value, Error>[src]
impl TryFrom<Value> for UnboundRelationship[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<UnboundRelationship, Error>[src]
impl TryFrom<Value> for Node[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Node, Error>[src]
impl TryFrom<Value> for Path[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Path, Error>[src]
impl TryFrom<Value> for Relationship[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(value: Value) -> Result<Relationship, Error>[src]
impl TryInto<Bytes> for Value[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<Bytes, Error>[src]
impl<K, V> TryInto<HashMap<K, V, RandomState>> for Value where
K: Hash + Eq + TryFrom<Value, Error = Error>,
V: TryFrom<Value, Error = Error>, [src]
K: Hash + Eq + TryFrom<Value, Error = Error>,
V: TryFrom<Value, Error = Error>,
type Error = Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<HashMap<K, V, RandomState>, Error>[src]
impl<K> TryInto<HashMap<K, Value, RandomState>> for Value where
K: Hash + Eq + TryFrom<Value, Error = Error>, [src]
K: Hash + Eq + TryFrom<Value, Error = Error>,
type Error = Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<HashMap<K, Value, RandomState>, Error>[src]
impl<T> TryInto<Vec<T>> for Value where
T: TryFrom<Value, Error = Error>, [src]
T: TryFrom<Value, Error = Error>,
type Error = Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<Vec<T>, Error>[src]
impl TryInto<Vec<Value>> for Value[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,