pub type Token<'b> = Token<'b>;
๐Deprecated since 0.23.0: import
Token
from minicbor::data
insteadAliased Typeยง
enum Token<'b> {
}
Variantsยง
Bool(bool)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
I8(i8)
I16(i16)
I32(i32)
I64(i64)
Int(Int)
F16(f32)
F32(f32)
F64(f64)
Bytes(&'b [u8])
String(&'b str)
Array(u64)
Map(u64)
Tag(Tag)
Simple(u8)
Break
Null
Undefined
BeginBytes
Start of indefinite byte string.
BeginString
Start of indefinite text string.
BeginArray
Start of indefinite array.
BeginMap
Start of indefinite map.