pub struct RollbackRecord {
pub name: String,
pub position: usize,
pub typ: RollbackType,
pub inner: Option<Box<Error>>,
pub previous_tracks: Vec<RollbackRecord>,
}Fields§
§name: String§position: usize§typ: RollbackType§inner: Option<Box<Error>>§previous_tracks: Vec<RollbackRecord>Trait Implementations§
Source§impl Clone for RollbackRecord
impl Clone for RollbackRecord
Source§fn clone(&self) -> RollbackRecord
fn clone(&self) -> RollbackRecord
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 RollbackRecord
impl Debug for RollbackRecord
Source§impl Display for RollbackRecord
impl Display for RollbackRecord
Source§impl PartialEq for RollbackRecord
impl PartialEq for RollbackRecord
impl StructuralPartialEq for RollbackRecord
Auto Trait Implementations§
impl Freeze for RollbackRecord
impl RefUnwindSafe for RollbackRecord
impl Send for RollbackRecord
impl Sync for RollbackRecord
impl Unpin for RollbackRecord
impl UnwindSafe for RollbackRecord
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