How to improve this graph implementation in rust

I am new to Rust, I am looking for ways to improve my implementation of graphs, can you please suggest any ways to improve it? Thank you.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>#![allow(dead_code)]
use std::collections::HashMap;
#[derive(Clone,Debug)]
struct Vertex<T>{
data: T,
edges: HashMap<T,i32>,
}
//Undirected Graph Implementation
struct Graph<T>{
vertices: Vec<Box<Vertex<T>>>,
}
</code>
<code>#![allow(dead_code)] use std::collections::HashMap; #[derive(Clone,Debug)] struct Vertex<T>{ data: T, edges: HashMap<T,i32>, } //Undirected Graph Implementation struct Graph<T>{ vertices: Vec<Box<Vertex<T>>>, } </code>
#![allow(dead_code)]
use std::collections::HashMap;
#[derive(Clone,Debug)]
struct Vertex<T>{
    data: T,
    edges: HashMap<T,i32>,
}

//Undirected Graph Implementation
struct Graph<T>{
    vertices: Vec<Box<Vertex<T>>>,
}

Vertex block:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>impl <T> Vertex<T>
where T: Clone + Copy + std::fmt::Debug + Eq + PartialEq + std::hash::Hash{
fn new(val: T)->Vertex<T>{
return Vertex{
data: val,
edges: HashMap::new(),
}
}
fn append(&mut self, other_: T, weight: i32){
self.edges.insert(other_,weight);
}
fn delete(&mut self, other_: T){
if self.edges.contains_key(&other_){ self.edges.remove(&other_); };
}
}
</code>
<code>impl <T> Vertex<T> where T: Clone + Copy + std::fmt::Debug + Eq + PartialEq + std::hash::Hash{ fn new(val: T)->Vertex<T>{ return Vertex{ data: val, edges: HashMap::new(), } } fn append(&mut self, other_: T, weight: i32){ self.edges.insert(other_,weight); } fn delete(&mut self, other_: T){ if self.edges.contains_key(&other_){ self.edges.remove(&other_); }; } } </code>
impl <T> Vertex<T>
    where T: Clone + Copy + std::fmt::Debug + Eq + PartialEq + std::hash::Hash{
        fn new(val: T)->Vertex<T>{
            return Vertex{
                data: val,
                edges: HashMap::new(),
            }
        }
        fn append(&mut self, other_: T, weight: i32){
            self.edges.insert(other_,weight);
        }
        fn delete(&mut self, other_: T){
            if self.edges.contains_key(&other_){ self.edges.remove(&other_); };
        }
    }

Graph methods: I have doubts regarding my implementation of add_vertex method particularly is there any ways to improve it.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>impl <T: Copy + Eq + std::fmt::Debug + std::hash::Hash + PartialEq> Graph<T>{
fn new()->Graph<T>{
return Self { vertices: Vec::new()}
}
//Have to rewrite this fully to implement undirected graph :).
fn add_vertex(&mut self, data: T, connection: HashMap<T,i32>){
//check if the data is already in the vector;
if self.vertices.iter().any(|vertex| vertex.data == data){
let index = self.vertices.iter().position(|vertex| vertex.data == data).unwrap();
let mut node_i = Box::new(Vertex::new(data));
for i in &self.vertices{
if i.data == data{
node_i = i.clone();
}
}
for (key, value) in connection{
self.add_edge(&mut node_i,key, value);
}
self.vertices[index] = node_i;
}
//if there is no vertex with the same name;
else{
let mut new_node = Box::new(Vertex::new(data));
for (key,value) in connection{
self.add_edge(&mut new_node, key, value);
}
self.vertices.push(new_node);
}
}
fn add_edge(&mut self,node_1: &mut Box<Vertex<T>>, node_2: T,value: i32){
node_1.append(node_2, value);
if self.vertices.iter().any(|vertex| vertex.data == node_2){
let index = self.vertices.iter().position(|vertex| vertex.data == node_2).unwrap();
let node_i = self.vertices.get_mut(index).unwrap();
node_i.append(node_1.data,value);
}
}
</code>
<code>impl <T: Copy + Eq + std::fmt::Debug + std::hash::Hash + PartialEq> Graph<T>{ fn new()->Graph<T>{ return Self { vertices: Vec::new()} } //Have to rewrite this fully to implement undirected graph :). fn add_vertex(&mut self, data: T, connection: HashMap<T,i32>){ //check if the data is already in the vector; if self.vertices.iter().any(|vertex| vertex.data == data){ let index = self.vertices.iter().position(|vertex| vertex.data == data).unwrap(); let mut node_i = Box::new(Vertex::new(data)); for i in &self.vertices{ if i.data == data{ node_i = i.clone(); } } for (key, value) in connection{ self.add_edge(&mut node_i,key, value); } self.vertices[index] = node_i; } //if there is no vertex with the same name; else{ let mut new_node = Box::new(Vertex::new(data)); for (key,value) in connection{ self.add_edge(&mut new_node, key, value); } self.vertices.push(new_node); } } fn add_edge(&mut self,node_1: &mut Box<Vertex<T>>, node_2: T,value: i32){ node_1.append(node_2, value); if self.vertices.iter().any(|vertex| vertex.data == node_2){ let index = self.vertices.iter().position(|vertex| vertex.data == node_2).unwrap(); let node_i = self.vertices.get_mut(index).unwrap(); node_i.append(node_1.data,value); } } </code>
impl <T: Copy + Eq + std::fmt::Debug + std::hash::Hash + PartialEq> Graph<T>{
    fn new()->Graph<T>{
        return Self { vertices: Vec::new()}
    }
    //Have to rewrite this fully to implement undirected graph :).
    fn add_vertex(&mut self, data: T, connection: HashMap<T,i32>){
        //check if the data is already in the vector;
        if self.vertices.iter().any(|vertex| vertex.data == data){
            
            let index = self.vertices.iter().position(|vertex| vertex.data == data).unwrap();
            let mut node_i = Box::new(Vertex::new(data));
            for i in &self.vertices{
                if i.data == data{
                    node_i = i.clone();
                }
            }
            for (key, value) in connection{
                self.add_edge(&mut node_i,key, value);
            }
            
            self.vertices[index] = node_i;
            

        }
        
        //if there is no vertex with the same name;
        else{
            let mut new_node = Box::new(Vertex::new(data));
            for (key,value) in connection{
                self.add_edge(&mut new_node, key, value);
            }
            self.vertices.push(new_node);
        }
        

    }
    fn add_edge(&mut self,node_1: &mut Box<Vertex<T>>, node_2: T,value: i32){
        node_1.append(node_2, value);
        if self.vertices.iter().any(|vertex| vertex.data == node_2){
            let index = self.vertices.iter().position(|vertex| vertex.data == node_2).unwrap();
            let node_i = self.vertices.get_mut(index).unwrap();
            node_i.append(node_1.data,value);

        }
    }
        
    

This is my implentation

New contributor

Ramanan S is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật