pub struct Path<V, E> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'de, V, E> Deserialize<'de> for Path<V, E>where
V: Deserialize<'de>,
E: Deserialize<'de>,
impl<'de, V, E> Deserialize<'de> for Path<V, E>where
V: Deserialize<'de>,
E: Deserialize<'de>,
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<'a, V, E> FromSql<'a> for Path<V, E>where
V: Deserialize<'a>,
E: Deserialize<'a>,
Represents path in graph. Used during process of path deserialization
impl<'a, V, E> FromSql<'a> for Path<V, E>where
V: Deserialize<'a>,
E: Deserialize<'a>,
Represents path in graph. Used during process of path deserialization
Source§fn from_sql(
ty: &Type,
raw: &'a [u8],
) -> Result<Path<V, E>, Box<dyn Error + Sync + Send>>
fn from_sql( ty: &Type, raw: &'a [u8], ) -> Result<Path<V, E>, Box<dyn Error + Sync + Send>>
Creates a new value of this type from a buffer of data of the specified
Postgres
Type in its binary format. Read moreSource§fn accepts(ty: &Type) -> bool
fn accepts(ty: &Type) -> bool
Determines if a value of this type can be created from the specified
Postgres
Type.Auto Trait Implementations§
impl<V, E> Freeze for Path<V, E>
impl<V, E> RefUnwindSafe for Path<V, E>where
V: RefUnwindSafe,
E: RefUnwindSafe,
impl<V, E> Send for Path<V, E>
impl<V, E> Sync for Path<V, E>
impl<V, E> Unpin for Path<V, E>
impl<V, E> UnwindSafe for Path<V, E>where
V: UnwindSafe,
E: UnwindSafe,
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