pub struct Refs<Graph>where
Graph: Graph,{
pub bryn: Graph::VertexId,
pub julia: Graph::VertexId,
pub graph_api: Graph::VertexId,
pub rust: Graph::VertexId,
pub bryn_knows_julia: Graph::EdgeId,
pub julia_knows_bryn: Graph::EdgeId,
pub bryn_created_graph_api: Graph::EdgeId,
pub graph_api_language_rust: Graph::EdgeId,
}
Fields§
§bryn: Graph::VertexId
§julia: Graph::VertexId
§graph_api: Graph::VertexId
§rust: Graph::VertexId
§bryn_knows_julia: Graph::EdgeId
§julia_knows_bryn: Graph::EdgeId
§bryn_created_graph_api: Graph::EdgeId
§graph_api_language_rust: Graph::EdgeId
Auto Trait Implementations§
impl<Graph> Freeze for Refs<Graph>
impl<Graph> RefUnwindSafe for Refs<Graph>
impl<Graph> Send for Refs<Graph>
impl<Graph> Sync for Refs<Graph>
impl<Graph> Unpin for Refs<Graph>
impl<Graph> UnwindSafe for Refs<Graph>
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