pub struct TensorSummary {
pub name: String,
pub dtype: String,
pub shape: Vec<usize>,
pub nbytes: usize,
}Fields§
§name: String§dtype: String§shape: Vec<usize>§nbytes: usizeTrait Implementations§
Source§impl Clone for TensorSummary
impl Clone for TensorSummary
Source§fn clone(&self) -> TensorSummary
fn clone(&self) -> TensorSummary
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 TensorSummary
impl Debug for TensorSummary
Auto Trait Implementations§
impl Freeze for TensorSummary
impl RefUnwindSafe for TensorSummary
impl Send for TensorSummary
impl Sync for TensorSummary
impl Unpin for TensorSummary
impl UnsafeUnpin for TensorSummary
impl UnwindSafe for TensorSummary
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