pub struct ActionJournal {
pub name: String,
pub graph: GraphUndoBatch,
pub arrow: ArrowUndoBatch,
pub affected_cells: usize,
}Fields§
§name: String§graph: GraphUndoBatch§arrow: ArrowUndoBatch§affected_cells: usizeTrait Implementations§
Source§impl Clone for ActionJournal
impl Clone for ActionJournal
Source§fn clone(&self) -> ActionJournal
fn clone(&self) -> ActionJournal
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 ActionJournal
impl Debug for ActionJournal
Source§impl Default for ActionJournal
impl Default for ActionJournal
Source§fn default() -> ActionJournal
fn default() -> ActionJournal
Returns the “default value” for a type. Read more
Source§impl PartialEq for ActionJournal
impl PartialEq for ActionJournal
impl StructuralPartialEq for ActionJournal
Auto Trait Implementations§
impl Freeze for ActionJournal
impl RefUnwindSafe for ActionJournal
impl Send for ActionJournal
impl Sync for ActionJournal
impl Unpin for ActionJournal
impl UnsafeUnpin for ActionJournal
impl UnwindSafe for ActionJournal
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more