pub enum Decl {
Datasource(Block),
Generator(Block),
Enum(EnumDecl),
Model(ModelDecl),
}Expand description
One top-level declaration.
Variants§
Datasource(Block)
datasource db { ... }
Generator(Block)
generator client { ... }
Enum(EnumDecl)
enum Role { ... }
Model(ModelDecl)
model User { ... }
Trait Implementations§
impl StructuralPartialEq for Decl
Auto Trait Implementations§
impl Freeze for Decl
impl RefUnwindSafe for Decl
impl Send for Decl
impl Sync for Decl
impl Unpin for Decl
impl UnsafeUnpin for Decl
impl UnwindSafe for Decl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more