MCPcopy Create free account
hub / github.com/SeaQL/FireDBG.for.Rust / bytes_v

Method bytes_v

debugger/src/debugger/value_writer.rs:96–102  ·  view source on GitHub ↗
(&self, ty: &str, val: Bytes)

Source from the content-addressed store, hash-verified

94 }
95
96 fn bytes_v(&self, ty: &str, val: Bytes) -> Bytes {
97 let mut msg = Bytes::new();
98 msg.identifier(ty);
99 msg.blob(val);
100 msg.push_str("bytes");
101 msg
102 }
103
104 fn arr_v<I: Iterator<Item = Bytes>>(&self, iter: I) -> Bytes {
105 let mut msg = Bytes::new();

Callers 2

write_valueFunction · 0.45
write_base_valueFunction · 0.45

Calls 3

identifierMethod · 0.80
blobMethod · 0.80
push_strMethod · 0.80

Tested by

no test coverage detected