From d5dfa36f6a8968e90cf8c817d0447b565b568a9a Mon Sep 17 00:00:00 2001 From: lukaszKielar <kielar.lukasz@hotmail.com> Date: Wed, 1 Jul 2020 19:10:53 +0200 Subject: [PATCH] finish as_ref_mut exercise --- exercises/conversions/as_ref_mut.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/exercises/conversions/as_ref_mut.rs b/exercises/conversions/as_ref_mut.rs index 963c0f2..f1e5072 100644 --- a/exercises/conversions/as_ref_mut.rs +++ b/exercises/conversions/as_ref_mut.rs @@ -2,16 +2,15 @@ // Read more about them at https://doc.rust-lang.org/std/convert/trait.AsRef.html // and https://doc.rust-lang.org/std/convert/trait.AsMut.html, respectively. -// I AM NOT DONE // Obtain the number of bytes (not characters) in the given argument // Add the AsRef trait appropriately as a trait bound -fn byte_counter<T>(arg: T) -> usize { +fn byte_counter<T: AsRef<str>>(arg: T) -> usize { arg.as_ref().as_bytes().len() } // Obtain the number of characters (not bytes) in the given argument // Add the AsRef trait appropriately as a trait bound -fn char_counter<T>(arg: T) -> usize { +fn char_counter<T: AsRef<str>>(arg: T) -> usize { arg.as_ref().chars().count() }