We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3532a99 + 6fa88ba commit bdddfe2Copy full SHA for bdddfe2
README.md
@@ -68,16 +68,13 @@ let adt = Adt { x: 42, p: Foo::Space(50).into() };
68
println!("We can explicitly deref: {}", *adt.p);
69
println!("Or use deref coercion: {}", adt.p);
70
println!("Or we can use borrow: {}", &adt.p);
71
-
72
-// And if all that is too complicated just use the inherent methods:
73
74
-println!("Explicitly get a reference: {}", adt.p.as_inner());
75
-println!("Or the inner type: {}", adt.p.into_inner());
76
```
77
78
## Minimum Supported Rust Version (MSRV)
79
80
-The crate MSRV is Rust v1.56.1
+This library should compile with any combination of features on **Rust 1.63.0**.
+
+Use `Cargo-minimal.lock` to build the MSRV by copying to `Cargo.lock` and building.
81
82
## Licensing
83
0 commit comments