MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / email

Method email

atomic-identity/src/identity.rs:452–455  ·  view source on GitHub ↗

Set the email address.

(mut self, email: impl Into<String>)

Source from the content-addressed store, hash-verified

450
451 /// Set the email address.
452 pub fn email(mut self, email: impl Into<String>) -> Self {
453 self.email = Some(email.into());
454 self
455 }
456
457 /// Set the identity type.
458 pub fn identity_type(mut self, identity_type: IdentityType) -> Self {

Calls

no outgoing calls