`Populatable` provides functionality to construct an object based on info found in the http response header
| 8 | /// `Populatable` provides functionality to construct |
| 9 | /// an object based on info found in the http response header |
| 10 | pub trait Populatable { |
| 11 | /// `populate` constructs a new object based on the |
| 12 | /// information found in the http response header |
| 13 | fn populate(raw_header: &HttpHeaderType) -> Self; |
| 14 | } |
| 15 | |
| 16 | /// `Rate` represents the X-Rate-Limit data |
| 17 | /// provided by the Github v3 API and provided for each response |
nothing calls this directly
no outgoing calls
no test coverage detected