pub struct Changeset {
pub id: u64,
pub user: String,
pub uid: u64,
pub created_at: String,
pub closed_at: Option<String>,
pub open: bool,
pub discussion: Option<Discussion>,
pub tags: Vec<Tag>,
pub min_lon: Option<f64>,
pub min_lat: Option<f64>,
pub max_lon: Option<f64>,
pub max_lat: Option<f64>,
}
Fields§
§id: u64
§user: String
§uid: u64
§created_at: String
§closed_at: Option<String>
§open: bool
§discussion: Option<Discussion>
§min_lon: Option<f64>
§min_lat: Option<f64>
§max_lon: Option<f64>
§max_lat: Option<f64>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Changeset
impl<'de> Deserialize<'de> for Changeset
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Changeset
Auto Trait Implementations§
impl Freeze for Changeset
impl RefUnwindSafe for Changeset
impl Send for Changeset
impl Sync for Changeset
impl Unpin for Changeset
impl UnwindSafe for Changeset
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more