Skip to content

Commit 0c7e399

Browse files
committed
Dimension no longer derives from Clone
1 parent a89f96c commit 0c7e399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdf5-rs/src/dim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::slice;
44
pub type Ix = usize;
55

66
/// A trait for the shape and index types.
7-
pub trait Dimension: Clone {
7+
pub trait Dimension {
88
fn ndim(&self) -> usize;
99
fn dims(&self) -> Vec<Ix>;
1010

0 commit comments

Comments
 (0)