Struct neo4rs::BoltString 
source · pub struct BoltString {
    pub value: String,
}Fields§
§value: StringImplementations§
Trait Implementations§
source§impl Borrow<str> for BoltString
 
impl Borrow<str> for BoltString
source§impl Clone for BoltString
 
impl Clone for BoltString
source§fn clone(&self) -> BoltString
 
fn clone(&self) -> BoltString
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for BoltString
 
impl Debug for BoltString
source§impl<'de> Deserialize<'de> for BoltString
 
impl<'de> Deserialize<'de> for BoltString
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for BoltString
 
impl Display for BoltString
source§impl From<&str> for BoltString
 
impl From<&str> for BoltString
source§impl From<BoltString> for String
 
impl From<BoltString> for String
source§fn from(value: BoltString) -> Self
 
fn from(value: BoltString) -> Self
Converts to this type from the input type.
source§impl From<String> for BoltString
 
impl From<String> for BoltString
source§impl Hash for BoltString
 
impl Hash for BoltString
source§impl<'de> IntoDeserializer<'de, DeError> for &'de BoltString
 
impl<'de> IntoDeserializer<'de, DeError> for &'de BoltString
§type Deserializer = BorrowedStrDeserializer<'de, DeError>
 
type Deserializer = BorrowedStrDeserializer<'de, DeError>
The type of the deserializer being converted into.
source§fn into_deserializer(self) -> Self::Deserializer
 
fn into_deserializer(self) -> Self::Deserializer
Convert this value into a deserializer.
source§impl PartialEq for BoltString
 
impl PartialEq for BoltString
source§fn eq(&self, other: &BoltString) -> bool
 
fn eq(&self, other: &BoltString) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl TryFrom<BoltType> for BoltString
 
impl TryFrom<BoltType> for BoltString
impl Eq for BoltString
impl StructuralPartialEq for BoltString
Auto Trait Implementations§
impl RefUnwindSafe for BoltString
impl Send for BoltString
impl Sync for BoltString
impl Unpin for BoltString
impl UnwindSafe for BoltString
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