Trait jsonapis::Builder [−][src]
pub trait Builder: Clone + Debug + Eq + PartialEq + Sized {
type Entity: Entity;
fn finish(self) -> Result<Self::Entity, ()>;
fn expect(self, msg: &str) -> Self::Entity { ... }
fn expect_err(self, msg: &str) { ... }
fn unwrap(self) -> Self::Entity { ... }
fn unwrap_err(self) { ... }
}