pub struct PredDecl {
pub name: String,
pub types: Vec<TypeRef>,
pub columns: Vec<PredColumn>,
pub is_private: bool,
}Expand description
Predicate declaration
Fields§
§name: StringPredicate name.
types: Vec<TypeRef>Column types.
columns: Vec<PredColumn>Declared columns, including optional names.
is_private: boolWhether this predicate is module-private.
Trait Implementations§
impl StructuralPartialEq for PredDecl
Auto Trait Implementations§
impl Freeze for PredDecl
impl RefUnwindSafe for PredDecl
impl Send for PredDecl
impl Sync for PredDecl
impl Unpin for PredDecl
impl UnsafeUnpin for PredDecl
impl UnwindSafe for PredDecl
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