pub fn once_values<O, F>(handler: F) -> OnceValues<O>where F: Fn(&O) -> Result<Vec<OsString>, Error> + 'static,
Calls the given function and initialize the value upon first use.