pub struct GraphSessionDiff {
pub added: Vec<GraphNodeSummary>,
pub removed: Vec<GraphNodeSummary>,
pub focus_before: Option<BlockId>,
pub focus_after: Option<BlockId>,
pub changed_focus: bool,
}Fields§
§added: Vec<GraphNodeSummary>§removed: Vec<GraphNodeSummary>§focus_before: Option<BlockId>§focus_after: Option<BlockId>§changed_focus: boolTrait Implementations§
Source§impl Clone for GraphSessionDiff
impl Clone for GraphSessionDiff
Source§fn clone(&self) -> GraphSessionDiff
fn clone(&self) -> GraphSessionDiff
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 GraphSessionDiff
impl Debug for GraphSessionDiff
Source§impl<'de> Deserialize<'de> for GraphSessionDiff
impl<'de> Deserialize<'de> for GraphSessionDiff
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 GraphSessionDiff
impl RefUnwindSafe for GraphSessionDiff
impl Send for GraphSessionDiff
impl Sync for GraphSessionDiff
impl Unpin for GraphSessionDiff
impl UnsafeUnpin for GraphSessionDiff
impl UnwindSafe for GraphSessionDiff
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