devela/num/geom/linear/vector/vec/
impl_traits.rs

1// devela::num::geom::linear::vector::vec::impl_traits
2//
3//!
4//
5
6use crate::VecVector;
7use core::fmt;
8
9/* Clone, Copy */
10
11// T:Clone
12impl<T: Clone> Clone for VecVector<T> {
13    fn clone(&self) -> Self {
14        Self { coords: self.coords.clone() }
15    }
16}
17
18/* Default, ConstDefault */
19
20impl<T: Default> Default for VecVector<T> {
21    /// Returns a `VecVector`, using the default value to fill the data.
22    fn default() -> Self {
23        Self { coords: Default::default() }
24    }
25}
26
27// T:Debug
28impl<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
34// T:PartialEq
35impl<T: PartialEq> PartialEq for VecVector<T> {
36    fn eq(&self, other: &Self) -> bool {
37        self.coords == other.coords
38    }
39}
40// T:Eq
41impl<T: Eq> Eq for VecVector<T> {}