pub enum ClearReason {
ScopeClosed,
}Expand description
Reason a materialized output was cleared.
Variants§
ScopeClosed
The owning scope was closed.
Trait Implementations§
Source§impl Clone for ClearReason
impl Clone for ClearReason
Source§fn clone(&self) -> ClearReason
fn clone(&self) -> ClearReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ClearReason
Source§impl Debug for ClearReason
impl Debug for ClearReason
impl Eq for ClearReason
Source§impl PartialEq for ClearReason
impl PartialEq for ClearReason
Source§fn eq(&self, other: &ClearReason) -> bool
fn eq(&self, other: &ClearReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClearReason
Auto Trait Implementations§
impl Freeze for ClearReason
impl RefUnwindSafe for ClearReason
impl Send for ClearReason
impl Sync for ClearReason
impl Unpin for ClearReason
impl UnsafeUnpin for ClearReason
impl UnwindSafe for ClearReason
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