Skip to content

Instantly share code, notes, and snippets.

@berkes
Created October 4, 2022 09:48
Show Gist options
  • Save berkes/347adbb0fda1bd20eb447bc9b0feca0e to your computer and use it in GitHub Desktop.
Save berkes/347adbb0fda1bd20eb447bc9b0feca0e to your computer and use it in GitHub Desktop.
Using Value Object
struct PageRequest {
url: String,
size: PageSize,
response_code: HttpResponseCode,
}
//...
PageRequest {
url: "http://example.com/about".to_string(),
size: PageSize::new(1_337)?,
response_code: HttpResponseCode::new(200)?,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment