pub struct VerificationProgress {
pub model_id: i64,
pub shard_index: usize,
pub total_shards: usize,
pub shard_progress: ShardProgress,
}Expand description
Progress update during model verification.
Fields§
§model_id: i64Model ID being verified.
shard_index: usizeCurrent shard index being verified.
total_shards: usizeTotal number of shards.
shard_progress: ShardProgressProgress status for this shard.
Trait Implementations§
Source§impl Clone for VerificationProgress
impl Clone for VerificationProgress
Source§fn clone(&self) -> VerificationProgress
fn clone(&self) -> VerificationProgress
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 moreSource§impl Debug for VerificationProgress
impl Debug for VerificationProgress
Source§impl<'de> Deserialize<'de> for VerificationProgress
impl<'de> Deserialize<'de> for VerificationProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VerificationProgress
impl RefUnwindSafe for VerificationProgress
impl Send for VerificationProgress
impl Sync for VerificationProgress
impl Unpin for VerificationProgress
impl UnwindSafe for VerificationProgress
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