wip: initial cloudfront support #22
Annotations
4 errors
|
[clippy] src/config.rs#L103:
src/config.rs#L103
error[E0004]: non-exhaustive patterns: type `&config::ServiceConfig` is non-empty
--> src/config.rs:103:15
|
103 | match self {
| ^^^^
|
note: `config::ServiceConfig` defined here
--> src/config.rs:44:10
|
44 | pub enum ServiceConfig {
| ^^^^^^^^^^^^^
= note: the matched value is of type `&config::ServiceConfig`
= note: references are always considered inhabited
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
103 ~ match self {
104 + _ => todo!(),
105 + }
|
|
|
[clippy] src/config.rs#L113:
src/config.rs#L113
error[E0004]: non-exhaustive patterns: type `&config::ServiceConfig` is non-empty
--> src/config.rs:113:15
|
113 | match self {
| ^^^^
|
note: `config::ServiceConfig` defined here
--> src/config.rs:44:10
|
44 | pub enum ServiceConfig {
| ^^^^^^^^^^^^^
= note: the matched value is of type `&config::ServiceConfig`
= note: references are always considered inhabited
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
113 ~ match self {
114 + _ => todo!(),
115 + }
|
|
|
[clippy] src/config.rs#L103:
src/config.rs#L103
error[E0004]: non-exhaustive patterns: type `&config::ServiceConfig` is non-empty
--> src/config.rs:103:15
|
103 | match self {
| ^^^^
|
note: `config::ServiceConfig` defined here
--> src/config.rs:44:10
|
44 | pub enum ServiceConfig {
| ^^^^^^^^^^^^^
= note: the matched value is of type `&config::ServiceConfig`
= note: references are always considered inhabited
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
103 ~ match self {
104 + _ => todo!(),
105 + }
|
|
|
[clippy] src/config.rs#L113:
src/config.rs#L113
error[E0004]: non-exhaustive patterns: type `&config::ServiceConfig` is non-empty
--> src/config.rs:113:15
|
113 | match self {
| ^^^^
|
note: `config::ServiceConfig` defined here
--> src/config.rs:44:10
|
44 | pub enum ServiceConfig {
| ^^^^^^^^^^^^^
= note: the matched value is of type `&config::ServiceConfig`
= note: references are always considered inhabited
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
113 ~ match self {
114 + _ => todo!(),
115 + }
|
|