| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Yesod.Crud
Documentation
Constructors
| Crud | |
Instances
| Eq (Key a) => Eq (Route (Crud master a)) | |
| Read (Key a) => Read (Route (Crud master a)) | |
| Show (Key a) => Show (Route (Crud master a)) | |
| (PathPiece (Key a), Eq (Key a)) => RenderRoute (Crud master a) | |
| (Eq (Key a), PathPiece (Key a)) => ParseRoute (Crud master a) | |
| (Eq (Key a), PathPiece (Key a)) => YesodSubDispatch (Crud master a) (HandlerT master IO) | |
| data Route (Crud master a) |
data ChildCrud master p c Source
Constructors
| ChildCrud | |
Fields
| |
Instances
| (Eq (Key c), Eq p) => Eq (Route (ChildCrud master p c)) | |
| (Read (Key c), Read p) => Read (Route (ChildCrud master p c)) | |
| (Show (Key c), Show p) => Show (Route (ChildCrud master p c)) | |
| (PathPiece (Key c), Eq (Key c), PathPiece p, Eq p) => RenderRoute (ChildCrud master p c) | |
| (PathPiece (Key c), Eq (Key c), PathPiece p, Eq p) => ParseRoute (ChildCrud master p c) | |
| (Eq (Key c), PathPiece (Key c), Eq p, PathPiece p) => YesodSubDispatch (ChildCrud master p c) (HandlerT master IO) | |
data Route (ChildCrud master p c)
|
type HierarchyCrud master a = ChildCrud master (Maybe (Key a)) a Source