pub struct EntityEdit {
pub id: String,
pub label: String,
pub comment: Option<String>,
pub msg: Option<String>,
pub diff_html: Option<String>,
pub editors: Vec<EntityEditor>,
pub ts_before: NaiveDateTime,
pub ts_after: NaiveDateTime,
pub changed: bool,
pub created: bool,
pub reverted: bool,
}
Fields§
§id: String
§label: String
§comment: Option<String>
§msg: Option<String>
§diff_html: Option<String>
§editors: Vec<EntityEditor>
§ts_before: NaiveDateTime
§ts_after: NaiveDateTime
§changed: bool
§created: bool
§reverted: bool
Trait Implementations§
Source§impl Debug for EntityEdit
impl Debug for EntityEdit
Source§impl Default for EntityEdit
impl Default for EntityEdit
Source§fn default() -> EntityEdit
fn default() -> EntityEdit
Returns the “default value” for a type. Read more
Source§impl PartialEq for EntityEdit
impl PartialEq for EntityEdit
impl StructuralPartialEq for EntityEdit
Auto Trait Implementations§
impl Freeze for EntityEdit
impl RefUnwindSafe for EntityEdit
impl Send for EntityEdit
impl Sync for EntityEdit
impl Unpin for EntityEdit
impl UnwindSafe for EntityEdit
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