pub struct KgPathResponse {
pub agent_id: String,
pub from_id: String,
pub to_id: String,
pub hop_count: usize,
pub path: Vec<String>,
}Expand description
Response from GET /v1/knowledge/path
Fields§
§agent_id: String§from_id: String§to_id: String§hop_count: usize§path: Vec<String>Trait Implementations§
Source§impl Debug for KgPathResponse
impl Debug for KgPathResponse
Auto Trait Implementations§
impl Freeze for KgPathResponse
impl RefUnwindSafe for KgPathResponse
impl Send for KgPathResponse
impl Sync for KgPathResponse
impl Unpin for KgPathResponse
impl UnsafeUnpin for KgPathResponse
impl UnwindSafe for KgPathResponse
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