get

Function get 

Source
pub fn get(id: i32) -> Comment
Expand description

Get a comment by id

ยงExample

use json_placeholder_data::comments::get;
assert_eq!(
    get(37).email.as_str(),
    "Jacky@victoria.net",
);