make members of address public
This commit is contained in:
parent
6e045c569c
commit
2b8a7278cc
@ -1,14 +1,14 @@
|
||||
use reqwest;
|
||||
use serde_json;
|
||||
use std::{collections::HashMap, error::Error};
|
||||
use std::error::Error;
|
||||
use reqwest::header::USER_AGENT;
|
||||
|
||||
pub struct Address {
|
||||
street: String,
|
||||
city: String,
|
||||
state: String,
|
||||
country: String,
|
||||
postalcode: String
|
||||
pub street: String,
|
||||
pub city: String,
|
||||
pub state: String,
|
||||
pub country: String,
|
||||
pub postalcode: String
|
||||
}
|
||||
|
||||
impl Address {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user