rust

    10热度

    2回答

    Rust是否有套接字或网络库?标准库文档中的net页面似乎只包含与地址相关的功能。

    10热度

    4回答

    struct Point { x: f64, y: f64 } enum Shape { Circle(Point, f64), Rectangle(Point, Point) } let my_shape = Shape::Circle(Point {x: 0.0, y: 0.0}, 10.0); 我想打印出circle的第二个属性,在此处为10.0。 我试过m