devela/num/geom/linear/vector/vec/
impl_traits.rs
1use crate::VecVector;
7use core::fmt;
8
9impl<T: Clone> Clone for VecVector<T> {
13 fn clone(&self) -> Self {
14 Self { coords: self.coords.clone() }
15 }
16}
17
18impl<T: Default> Default for VecVector<T> {
21 fn default() -> Self {
23 Self { coords: Default::default() }
24 }
25}
26
27impl<T: fmt::Debug> fmt::Debug for VecVector<T> {
29 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
30 f.debug_struct("VecVector").field("coords", &self.coords).finish()
31 }
32}
33
34impl<T: PartialEq> PartialEq for VecVector<T> {
36 fn eq(&self, other: &Self) -> bool {
37 self.coords == other.coords
38 }
39}
40impl<T: Eq> Eq for VecVector<T> {}