MCPcopy Index your code
hub / github.com/clearloop/leetcode-cli / Formatter

Interface Formatter

src/cache/models.rs:594–597  ·  view source on GitHub ↗

Formatter for str

Source from the content-addressed store, hash-verified

592
593/// Formatter for str
594trait Formatter {
595 fn after_spaces(&self, spaces: usize) -> String;
596 fn before_spaces(&self, spaces: usize) -> String;
597}
598
599impl Formatter for str {
600 fn after_spaces(&self, spaces: usize) -> String {

Callers

nothing calls this directly

Implementers 1

models.rssrc/cache/models.rs

Calls

no outgoing calls

Tested by

no test coverage detected