pub struct ContextCollapseApplyResult<T> {
pub messages: T,
pub changed: bool,
}Expand description
Result of applying collapses
Fields§
§messages: T§changed: boolTrait Implementations§
Source§impl<T: Clone> Clone for ContextCollapseApplyResult<T>
impl<T: Clone> Clone for ContextCollapseApplyResult<T>
Source§fn clone(&self) -> ContextCollapseApplyResult<T>
fn clone(&self) -> ContextCollapseApplyResult<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for ContextCollapseApplyResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for ContextCollapseApplyResult<T>where
T: RefUnwindSafe,
impl<T> Send for ContextCollapseApplyResult<T>where
T: Send,
impl<T> Sync for ContextCollapseApplyResult<T>where
T: Sync,
impl<T> Unpin for ContextCollapseApplyResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for ContextCollapseApplyResult<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ContextCollapseApplyResult<T>where
T: UnwindSafe,
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