From bfa237fc1660bfbd78b70782dcf7476b97786d3d Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 20 Oct 2023 23:52:50 -0700 Subject: [PATCH] doc --- src/curr/str.rs | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/src/curr/str.rs b/src/curr/str.rs index 814a0746..038e87bf 100644 --- a/src/curr/str.rs +++ b/src/curr/str.rs @@ -1,26 +1,25 @@ +//# Custom string representations of the following types, also used for JSON +//# formatting. +//# +//# ## Strkey Types +//# - PublicKey +//# - PublicKey +//# - MuxedAccount +//# - MuxedAccountMed25519 +//# - SignerKey +//# - SignerKeyEd25519SignedPayload +//# - NodeId +//# +//# ## Asset Types +//# - Asset +//# - AlphaNum4 +//# - AlphaNum12 +//# +//# ## ASCII Types +//# - AssetCode +//# - AssetCode4 +//# - AssetCode12 #![cfg(feature = "std")] - -/// Custom string representations of the following types, also used for JSON -/// formatting. -/// -/// ## Strkey Types -/// - PublicKey -/// - PublicKey -/// - MuxedAccount -/// - MuxedAccountMed25519 -/// - SignerKey -/// - SignerKeyEd25519SignedPayload -/// - NodeId -/// -/// ## Asset Types -/// - Asset -/// - AlphaNum4 -/// - AlphaNum12 -/// -/// ## ASCII Types -/// - AssetCode -/// - AssetCode4 -/// - AssetCode12 use super::{Error, PublicKey, Uint256}; impl From for Error {