pub struct ChainEntry {
pub label: &'static str,
pub value: String,
pub is_boundary: bool,
}Expand description
A step in the residual chain: what was computed at each layer.
Fields§
§label: &'static strWhich layer produced this value.
value: StringDebug representation of the value at this layer.
is_boundary: boolWhether this was the layer that hit the boundary.
Trait Implementations§
Source§impl Clone for ChainEntry
impl Clone for ChainEntry
Source§fn clone(&self) -> ChainEntry
fn clone(&self) -> ChainEntry
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 Freeze for ChainEntry
impl RefUnwindSafe for ChainEntry
impl Send for ChainEntry
impl Sync for ChainEntry
impl Unpin for ChainEntry
impl UnsafeUnpin for ChainEntry
impl UnwindSafe for ChainEntry
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