MCPcopy Create free account
hub / github.com/Migorithm/rustiful-backend / Builder

Interface Builder

library/src/domain/builder.rs:1–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1pub trait Builder<T> {
2 fn new() -> Self;
3 fn build(self) -> T;
4}
5
6pub trait Buildable<Target, B: Builder<Target>> {
7 fn builder() -> B;

Callers

nothing calls this directly

Implementers 2

mod.rslibrary/src/domain/board/mod.rs
mod.rslibrary/src/domain/auth/mod.rs

Calls

no outgoing calls

Tested by

no test coverage detected