pub trait PgNode {
    type NodeType;

    fn as_node_ptr(&self) -> *mut Self::NodeType { ... }
}
Expand description

A trait applied to all of Postgres’ pg_sys::Node types and its subtypes

Required Associated Types

Provided Methods

Represent this node as a mutable pointer of its type

Implementors