pub trait Sqrt { type Output; // Required method fn sqrt(self) -> Self::Output; }
Takes the square root of a number.