#[repr(C)]pub struct ScanKeyData {
pub sk_flags: c_int,
pub sk_attno: AttrNumber,
pub sk_strategy: StrategyNumber,
pub sk_subtype: Oid,
pub sk_collation: Oid,
pub sk_func: FmgrInfo,
pub sk_argument: Datum,
}
Fields§
§sk_flags: c_int
§sk_attno: AttrNumber
§sk_strategy: StrategyNumber
§sk_subtype: Oid
§sk_collation: Oid
§sk_func: FmgrInfo
§sk_argument: Datum
Trait Implementations§
Source§impl Clone for ScanKeyData
impl Clone for ScanKeyData
Source§fn clone(&self) -> ScanKeyData
fn clone(&self) -> ScanKeyData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ScanKeyData
impl Debug for ScanKeyData
Source§impl Default for ScanKeyData
impl Default for ScanKeyData
impl Copy for ScanKeyData
Auto Trait Implementations§
impl Freeze for ScanKeyData
impl RefUnwindSafe for ScanKeyData
impl !Send for ScanKeyData
impl !Sync for ScanKeyData
impl Unpin for ScanKeyData
impl UnwindSafe for ScanKeyData
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