lint: another from impl

buddies-main-deployment
James Prestwich 4 years ago
parent 32551c1c32
commit 22158cb71a
No known key found for this signature in database
GPG Key ID: 75A7F5C06D747046
  1. 14
      rust/kathy/src/settings.rs

@ -30,10 +30,10 @@ impl Default for ChatGenConfig {
} }
} }
impl Into<ChatGenerator> for ChatGenConfig { impl From<ChatGenConfig> for ChatGenerator {
fn into(self) -> ChatGenerator { fn from(conf: ChatGenConfig) -> ChatGenerator {
match self { match conf {
Self::Static { ChatGenConfig::Static {
destination, destination,
recipient, recipient,
message, message,
@ -42,12 +42,12 @@ impl Into<ChatGenerator> for ChatGenConfig {
recipient, recipient,
message, message,
}, },
Self::OrderedList { messages } => ChatGenerator::OrderedList { ChatGenConfig::OrderedList { messages } => ChatGenerator::OrderedList {
messages, messages,
counter: 0, counter: 0,
}, },
Self::Random { length } => ChatGenerator::Random { length }, ChatGenConfig::Random { length } => ChatGenerator::Random { length },
Self::Default => ChatGenerator::Default, ChatGenConfig::Default => ChatGenerator::Default,
} }
} }
} }

Loading…
Cancel
Save