pub enum BlameSliceAdvance {
Progress {
next: BlameFrontierGroup,
finalized: Vec<OriginRange>,
usage: ResourceUsage,
},
Complete {
finalized: Vec<OriginRange>,
usage: ResourceUsage,
},
}Expand description
Bounded slice result. Callers persist this only on success.
Variants§
Trait Implementations§
Source§impl Clone for BlameSliceAdvance
impl Clone for BlameSliceAdvance
Source§fn clone(&self) -> BlameSliceAdvance
fn clone(&self) -> BlameSliceAdvance
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 moreSource§impl Debug for BlameSliceAdvance
impl Debug for BlameSliceAdvance
impl Eq for BlameSliceAdvance
Source§impl PartialEq for BlameSliceAdvance
impl PartialEq for BlameSliceAdvance
impl StructuralPartialEq for BlameSliceAdvance
Auto Trait Implementations§
impl Freeze for BlameSliceAdvance
impl RefUnwindSafe for BlameSliceAdvance
impl Send for BlameSliceAdvance
impl Sync for BlameSliceAdvance
impl Unpin for BlameSliceAdvance
impl UnsafeUnpin for BlameSliceAdvance
impl UnwindSafe for BlameSliceAdvance
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