pub struct Mnist {
pub train_data: Vec<[u8; 784]>,
pub test_data: Vec<[u8; 784]>,
pub train_labels: Vec<u8>,
pub test_labels: Vec<u8>,
}
Fields§
§train_data: Vec<[u8; 784]>
§test_data: Vec<[u8; 784]>
§train_labels: Vec<u8>
§test_labels: Vec<u8>
Implementations§
Auto Trait Implementations§
impl Freeze for Mnist
impl RefUnwindSafe for Mnist
impl Send for Mnist
impl Sync for Mnist
impl Unpin for Mnist
impl UnwindSafe for Mnist
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