We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e377bf commit e5513f9Copy full SHA for e5513f9
src/encoding/never.rs
@@ -13,22 +13,22 @@ impl Encoding for Never {
13
type UnionMembers = Never;
14
15
fn descriptor(&self) -> Descriptor<Never, Never, Never, Never> {
16
- match self { }
+ match *self { }
17
}
18
19
20
impl Encodings for Never {
21
fn each<F: EncodingsIterateCallback>(&self, _: &mut F) {
22
23
24
25
fn eq_encodings<E: ?Sized + Encodings>(&self, _: &E) -> bool {
26
27
28
29
30
impl fmt::Display for Never {
31
fn fmt(&self, _: &mut fmt::Formatter) -> fmt::Result {
32
33
34
0 commit comments