Struct derbyjson::Venue [] [src]

pub struct Venue {
    pub name: String,
    pub city: String,
    pub state: String,
    pub url: Option<String>,
    pub country: Option<String>,
    pub email: Option<String>,
    pub fax: Option<String>,
    pub otheraddr: Option<String>,
    pub phone: Option<String>,
    pub pob: Option<String>,
    pub postcode: Option<String>,
    pub street: Option<String>,
    pub notes: Vec<Note>,
    pub uuid: Vec<String>,
    pub logo: Vec<Logo>,
}

Information about a game venue.

Fields