Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
pub trait Builder<T> {
2
fn new() -> Self;
3
fn build(self) -> T;
4
}
5
6
pub trait Buildable<Target, B: Builder<Target>> {
7
fn builder() -> B;
Callers
nothing calls this directly
Implementers
2
mod.rs
library/src/domain/board/mod.rs
mod.rs
library/src/domain/auth/mod.rs
Calls
no outgoing calls
Tested by
no test coverage detected