Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Apress/beginning-rust-2e
/ Complex
Class
Complex
Source Code/20-09.rs:4–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
2.3 + 6.5i*/
3
mod complex {
4
pub struct Complex {
5
re: f64,
6
im: f64,
7
}
8
impl Complex {
9
pub fn from_re_im(re: f64, im: f64) -> Self {
10
Self { re, im }
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected