MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / format_uint32

Function format_uint32

src/repr/src/strconv.rs:197–203  ·  view source on GitHub ↗

Writes an `u32` to `buf`.

(buf: &mut F, u: u32)

Source from the content-addressed store, hash-verified

195
196/// Writes an `u32` to `buf`.
197pub fn format_uint32<F>(buf: &mut F, u: u32) -> Nestable
198where
199 F: FormatBuffer,
200{
201 write!(buf, "{}", u);
202 Nestable::Yes
203}
204
205/// Parses an `u64` from `s`.
206pub fn parse_uint64(s: &str) -> Result<u64, ParseError> {

Callers 4

stringify_datumFunction · 0.85
cast_uint32_to_stringFunction · 0.85
cast_oid_to_stringFunction · 0.85
encode_textMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected