pub struct FindPathResponse {
pub path: Vec<GraphNode>,
pub found: bool,
}Expand description
Response for finding path
Fields§
§path: Vec<GraphNode>Path as list of nodes
found: boolWhether path was found
Trait Implementations§
Source§impl Clone for FindPathResponse
impl Clone for FindPathResponse
Source§fn clone(&self) -> FindPathResponse
fn clone(&self) -> FindPathResponse
Returns a duplicate 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 FindPathResponse
impl Debug for FindPathResponse
Source§impl<'de> Deserialize<'de> for FindPathResponse
impl<'de> Deserialize<'de> for FindPathResponse
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
Auto Trait Implementations§
impl Freeze for FindPathResponse
impl RefUnwindSafe for FindPathResponse
impl Send for FindPathResponse
impl Sync for FindPathResponse
impl Unpin for FindPathResponse
impl UnwindSafe for FindPathResponse
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