pub struct Info {
pub version: i32,
pub timestamp: Option<NaiveDateTime>,
pub changeset: Option<i64>,
pub uid: Option<i32>,
pub user: Option<String>,
pub visible: Option<bool>,
}Expand description
Non-geographical information about a Element
Fields§
§version: i32Version number of this revision of the Element
timestamp: Option<NaiveDateTime>Time of last edit
changeset: Option<i64>Group of edits that this version belongs to
uid: Option<i32>User ID
user: Option<String>Username
visible: Option<bool>Whether a Element is visible or not
Assume this to be true if it is None. If [Some(false)], the Element was deleted.