MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / subject_param

Method subject_param

include/jwt/parameters.hpp:214–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212struct subject_param
213{
214 subject_param(std::string sub)
215 : sub_(std::move(sub))
216 {}
217
218 const std::string& get() const& noexcept { return sub_; }
219 std::string get() && noexcept { return sub_; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected