pub struct UndoOperationSummary {
pub id: u64,
pub description: String,
pub timestamp: String,
pub undone: bool,
}Expand description
One operation inside an undo batch summary.
Fields§
§id: u64§description: String§timestamp: String§undone: boolTrait Implementations§
Source§impl Clone for UndoOperationSummary
impl Clone for UndoOperationSummary
Source§fn clone(&self) -> UndoOperationSummary
fn clone(&self) -> UndoOperationSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UndoOperationSummary
impl Debug for UndoOperationSummary
impl Eq for UndoOperationSummary
Source§impl JsonSchema for UndoOperationSummary
impl JsonSchema for UndoOperationSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for UndoOperationSummary
impl PartialEq for UndoOperationSummary
Source§impl Serialize for UndoOperationSummary
impl Serialize for UndoOperationSummary
impl StructuralPartialEq for UndoOperationSummary
Auto Trait Implementations§
impl Freeze for UndoOperationSummary
impl RefUnwindSafe for UndoOperationSummary
impl Send for UndoOperationSummary
impl Sync for UndoOperationSummary
impl Unpin for UndoOperationSummary
impl UnsafeUnpin for UndoOperationSummary
impl UnwindSafe for UndoOperationSummary
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