pub enum CypherValue {
Float(f64),
Integer(i64),
String(String),
Boolean(bool),
List(List),
}
Variants§
Trait Implementations§
Source§impl Debug for CypherValue
impl Debug for CypherValue
Source§impl Display for CypherValue
impl Display for CypherValue
Source§impl From<&str> for CypherValue
impl From<&str> for CypherValue
Source§impl From<String> for CypherValue
impl From<String> for CypherValue
Source§impl<T: Into<CypherValue>> From<Vec<T>> for CypherValue
impl<T: Into<CypherValue>> From<Vec<T>> for CypherValue
Source§impl From<bool> for CypherValue
impl From<bool> for CypherValue
Source§impl From<f64> for CypherValue
impl From<f64> for CypherValue
Source§impl From<i64> for CypherValue
impl From<i64> for CypherValue
Source§impl FromStr for CypherValue
impl FromStr for CypherValue
Source§impl PartialEq for CypherValue
impl PartialEq for CypherValue
impl StructuralPartialEq for CypherValue
Auto Trait Implementations§
impl Freeze for CypherValue
impl RefUnwindSafe for CypherValue
impl Send for CypherValue
impl Sync for CypherValue
impl Unpin for CypherValue
impl UnwindSafe for CypherValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more