Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/QMHTMY/RustBook
/ Encoder
Interface
Encoder
publication/code/chapter10/base58.rs:33–36 ·
view source on GitHub ↗
编解码 trait
Source
from the content-addressed store, hash-verified
31
32
// 编解码 trait
33
pub trait Encoder {
34
// 编码方法
35
fn encode_to_base58(&self) -> String;
36
}
37
38
pub trait Decoder {
39
// 解码方法
Callers
nothing calls this directly
Implementers
1
base58.rs
publication/code/chapter10/base58.rs
Calls
no outgoing calls
Tested by
no test coverage detected