pub struct GraphEdgeResponse {
pub from_id: String,
pub to_id: String,
pub edge_type: String,
pub weight: f32,
pub created_at: u64,
}Expand description
A single edge in a graph response.
Fields§
§from_id: String§to_id: String§edge_type: String§weight: f32§created_at: u64Trait Implementations§
Source§impl Debug for GraphEdgeResponse
impl Debug for GraphEdgeResponse
Auto Trait Implementations§
impl Freeze for GraphEdgeResponse
impl RefUnwindSafe for GraphEdgeResponse
impl Send for GraphEdgeResponse
impl Sync for GraphEdgeResponse
impl Unpin for GraphEdgeResponse
impl UnsafeUnpin for GraphEdgeResponse
impl UnwindSafe for GraphEdgeResponse
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