ZPLT3HRL6NW2LKBRWNQYDM3F7AHO5USQZOQTFBVDKVACF2OJPWUAC
WTPFQPO5C3OWNOEIZQSIMAR7O6URYJJNUJSWDZUTWFDDAMNFMTLQC
4KJ45IJLTIE35KQZUSFMFS67RNENG4P2FZMKMULJLGGYMKJUVRSQC
4OJWMSOWWNT5N4W4FDMKBZB5UARCLGV3SRZVKGR4EFAYFUMUHM7AC
DOEG3V7UAVYBKLIPHSNWWONYDORKNJEZL2LD4EWGGUDB2SK6BOFQC
5Z2Y7VGVHJ7A6UPSEAPFVMIB5J7YHSI6WWHUUUYVLDJ56XSNCXKQC
old_identity.clone().create(true).await?;
old_identity.clone().create(false, true).await?;
Complete::default()?.create(true).await?;
Complete::default()?.create(false, true).await?;
pub async fn create(&self, link_remote: bool) -> Result<(), anyhow::Error> {
pub async fn create(&self, no_prompt: bool, link_remote: bool) -> Result<(), anyhow::Error> {
let confirmed_identity = self.prompt_changes(None, link_remote).await?;
let prompted_identity; let confirmed_identity = if no_prompt { self } else { prompted_identity = self.prompt_changes(None, link_remote).await?; &prompted_identity };
let prompted_identity;
let confirmed_identity = if no_prompt {
self
} else {
prompted_identity = self.prompt_changes(None, link_remote).await?;
&prompted_identity
};
identity.create(!options.no_link).await?;
identity.create(options.no_prompt, !options.no_link).await?;