Compare commits

...

2 Commits

Author SHA1 Message Date
Able 8d8ecbcbd1
Merge branch 'issue1' of ssh://git.ablecorp.us:20/Mesh/meshup into issue1 2021-11-27 22:03:56 -06:00
Able 3f39f4504a
url 2021-11-27 22:02:15 -06:00
1 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,14 @@
#[derive(Debug, PartialEq)]
pub struct Url;
struct Url {
scheme: String,
user: String,
password: String,
host: String,
port: u16,
path: String,
query: String,
fragment: String,
}
#[derive(Debug, PartialEq)]
pub struct RGBA {