Struct tokio_postgres::types::Type
[−]
[src]
pub struct Type(_);
A Postgres type.
Methods
impl Type[src]
fn from_oid(oid: u32) -> Option<Type>[src]
Returns the Type corresponding to the provided Oid if it
corresponds to a built-in type.
fn oid(&self) -> u32[src]
Returns the OID of the Type.
fn kind(&self) -> &Kind[src]
Returns the kind of this type.
fn schema(&self) -> &str[src]
Returns the schema of this type.
fn name(&self) -> &str[src]
Returns the name of this type.
Trait Implementations
impl Clone for Type[src]
impl Eq for Type[src]
impl PartialEq<Type> for Type[src]
impl Debug for Type[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.