add must uses

This commit is contained in:
Dietrich 2020-10-24 13:50:33 +02:00
parent 91f0453be6
commit 338b4949e4

View File

@ -123,22 +123,27 @@ impl crate::api::UserRead for User {
Some(&self.shell_path.shell) Some(&self.shell_path.shell)
} }
#[must_use]
fn get_full_name(&self) -> Option<&str> { fn get_full_name(&self) -> Option<&str> {
self.gecos.get_full_name() self.gecos.get_full_name()
} }
#[must_use]
fn get_room(&self) -> Option<&str> { fn get_room(&self) -> Option<&str> {
self.gecos.get_room() self.gecos.get_room()
} }
#[must_use]
fn get_phone_work(&self) -> Option<&str> { fn get_phone_work(&self) -> Option<&str> {
self.gecos.get_phone_work() self.gecos.get_phone_work()
} }
#[must_use]
fn get_phone_home(&self) -> Option<&str> { fn get_phone_home(&self) -> Option<&str> {
self.gecos.get_phone_home() self.gecos.get_phone_home()
} }
#[must_use]
fn get_other(&self) -> Option<&Vec<String>> { fn get_other(&self) -> Option<&Vec<String>> {
self.gecos.get_other() self.gecos.get_other()
} }