Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/QMHTMY/RustBook
/ Decoder
Interface
Decoder
publication/code/chapter10/base58.rs:38–41 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
36
}
37
38
pub trait Decoder {
39
// 解码方法
40
fn decode_from_base58(&self) -> Result<String, DecodeError>;
41
}
42
43
// 实现 base58 编码
44
impl Encoder for str {
Callers
nothing calls this directly
Implementers
1
base58.rs
publication/code/chapter10/base58.rs
Calls
no outgoing calls
Tested by
no test coverage detected