pub struct UndoResponse {
pub version: String,
pub success: bool,
pub undo: UndoSummary,
}Expand description
An undo response.
Fields§
§version: String§success: bool§undo: UndoSummaryImplementations§
Trait Implementations§
Source§impl Clone for UndoResponse
impl Clone for UndoResponse
Source§fn clone(&self) -> UndoResponse
fn clone(&self) -> UndoResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 UndoResponse
impl Debug for UndoResponse
Source§impl<'de> Deserialize<'de> for UndoResponse
impl<'de> Deserialize<'de> for UndoResponse
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
Auto Trait Implementations§
impl Freeze for UndoResponse
impl RefUnwindSafe for UndoResponse
impl Send for UndoResponse
impl Sync for UndoResponse
impl Unpin for UndoResponse
impl UnsafeUnpin for UndoResponse
impl UnwindSafe for UndoResponse
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