MCPcopy Create free account
hub / github.com/bedroombuilds/python2rust / last_name

Method last_name

2a_builder_pattern/rust/builder/src/main.rs:34–37  ·  view source on GitHub ↗
(mut self, last_name: impl Into<String>)

Source from the content-addressed store, hash-verified

32
33 #[allow(dead_code)]
34 fn last_name(mut self, last_name: impl Into<String>) -> Self {
35 self.last_name = Some(last_name.into());
36 self
37 }
38
39 fn build(self) -> User {
40 let Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected