pub struct RangeVar {
pub catalogname: Option<String>,
pub schemaname: Option<String>,
pub relname: String,
pub inh: bool,
pub relpersistence: String,
pub alias: Option<Value>,
pub location: i32,
}Fields§
§catalogname: Option<String>the catalog (database) name, or NULL
schemaname: Option<String>the schema name, or NULL
relname: Stringthe relation/sequence name
inh: boolexpand rel by inheritance? recursively act on children?
relpersistence: Stringsee RELPERSISTENCE_* in pg_class.h
alias: Option<Value>table alias & optional column aliases
location: i32token location, or -1 if unknown
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RangeVar
impl<'de> Deserialize<'de> for RangeVar
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 RangeVar
impl RefUnwindSafe for RangeVar
impl Send for RangeVar
impl Sync for RangeVar
impl Unpin for RangeVar
impl UnwindSafe for RangeVar
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