pub struct TypeName {
pub names: Option<Vec<Node>>,
pub type_oid: Oid,
pub setof: bool,
pub pct_type: bool,
pub typmods: Option<Vec<Node>>,
pub typemod: i32,
pub array_bounds: Option<Vec<Node>>,
pub location: ParseLoc,
}
Fields§
§names: Option<Vec<Node>>
§type_oid: Oid
§setof: bool
§pct_type: bool
§typmods: Option<Vec<Node>>
§typemod: i32
§array_bounds: Option<Vec<Node>>
§location: ParseLoc
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TypeName
impl<'de> Deserialize<'de> for TypeName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TypeName
impl RefUnwindSafe for TypeName
impl Send for TypeName
impl Sync for TypeName
impl Unpin for TypeName
impl UnwindSafe for TypeName
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