Struct 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 Debug for Type
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl Clone for Type
[src]
fn clone(&self) -> Type
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Eq for Type
[src]
impl PartialEq<Type> for Type
[src]
fn eq(&self, __arg_0: &Type) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Type) -> bool
[src]
This method tests for !=
.