use std::ops::Div; struct Scalar { value: f32 } #[derive(Debug, PartialEq)] struct Vector { value: Vec<f32> } impl Div<Scalar> for Vector { type Output ...
確定! 回上一頁