pub struct CheckpointIssue {
pub kind: CheckpointIssueKind,
pub detail: String,
pub tensor_name: Option<String>,
pub tensor_type_code: Option<u32>,
pub metadata_key: Option<String>,
}Expand description
One structured checkpoint diagnostic.
Fields§
§kind: CheckpointIssueKindStable diagnostic category.
detail: StringHuman-readable detail.
tensor_name: Option<String>Related tensor name, when applicable.
tensor_type_code: Option<u32>Related format type code, when applicable.
metadata_key: Option<String>Related metadata key, when applicable.
Trait Implementations§
Source§impl Clone for CheckpointIssue
impl Clone for CheckpointIssue
Source§fn clone(&self) -> CheckpointIssue
fn clone(&self) -> CheckpointIssue
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 CheckpointIssue
impl Debug for CheckpointIssue
impl Eq for CheckpointIssue
Source§impl PartialEq for CheckpointIssue
impl PartialEq for CheckpointIssue
impl StructuralPartialEq for CheckpointIssue
Auto Trait Implementations§
impl Freeze for CheckpointIssue
impl RefUnwindSafe for CheckpointIssue
impl Send for CheckpointIssue
impl Sync for CheckpointIssue
impl Unpin for CheckpointIssue
impl UnsafeUnpin for CheckpointIssue
impl UnwindSafe for CheckpointIssue
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