pub struct UtilityArchivePlan {
pub archived_ranges: Vec<Range<usize>>,
pub retained_ranges: Vec<Range<usize>>,
pub archived_tokens: u32,
pub retained_tokens: u32,
pub scores: Vec<UtilityUnitScore>,
}Fields§
§archived_ranges: Vec<Range<usize>>§retained_ranges: Vec<Range<usize>>§archived_tokens: u32§retained_tokens: u32§scores: Vec<UtilityUnitScore>Trait Implementations§
Source§impl Clone for UtilityArchivePlan
impl Clone for UtilityArchivePlan
Source§fn clone(&self) -> UtilityArchivePlan
fn clone(&self) -> UtilityArchivePlan
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 UtilityArchivePlan
impl Debug for UtilityArchivePlan
Source§impl Default for UtilityArchivePlan
impl Default for UtilityArchivePlan
Source§fn default() -> UtilityArchivePlan
fn default() -> UtilityArchivePlan
Returns the “default value” for a type. Read more
impl Eq for UtilityArchivePlan
Source§impl PartialEq for UtilityArchivePlan
impl PartialEq for UtilityArchivePlan
impl StructuralPartialEq for UtilityArchivePlan
Auto Trait Implementations§
impl Freeze for UtilityArchivePlan
impl RefUnwindSafe for UtilityArchivePlan
impl Send for UtilityArchivePlan
impl Sync for UtilityArchivePlan
impl Unpin for UtilityArchivePlan
impl UnsafeUnpin for UtilityArchivePlan
impl UnwindSafe for UtilityArchivePlan
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