pub struct GraphString(pub Vec<u8>);
Expand description
A string returned by the graph DB as a vector of bytes
Tuple Fields§
§0: Vec<u8>
Trait Implementations§
Source§impl Clone for GraphString
impl Clone for GraphString
Source§fn clone(&self) -> GraphString
fn clone(&self) -> GraphString
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 GraphString
impl Debug for GraphString
Source§impl<'de> Deserialize<'de> for GraphString
impl<'de> Deserialize<'de> for GraphString
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 From<GraphString> for Vec<u8>
impl From<GraphString> for Vec<u8>
Source§fn from(redis_string: GraphString) -> Self
fn from(redis_string: GraphString) -> Self
Converts to this type from the input type.
Source§impl From<String> for GraphString
impl From<String> for GraphString
Source§impl FromCell for GraphString
impl FromCell for GraphString
Source§impl Hash for GraphString
impl Hash for GraphString
Source§impl PartialEq for GraphString
impl PartialEq for GraphString
Source§impl Serialize for GraphString
impl Serialize for GraphString
impl Eq for GraphString
impl StructuralPartialEq for GraphString
Auto Trait Implementations§
impl Freeze for GraphString
impl RefUnwindSafe for GraphString
impl Send for GraphString
impl Sync for GraphString
impl Unpin for GraphString
impl UnwindSafe for GraphString
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