pub struct PlanOptions {
pub string_policy: StringPolicy,
pub binary_policy: BinaryPolicy,
pub timezone_policy: TimezonePolicy,
pub nanosecond_policy: NanosecondPolicy,
pub uint64_policy: UInt64Policy,
pub decimal_policy: DecimalPolicy,
pub decimal256_policy: Decimal256Policy,
pub float_policy: FloatPolicy,
pub date64_policy: Date64Policy,
}Expand description
Planning options for Arrow-to-SQL Server conversion.
Fields§
§string_policy: StringPolicySQL Server text target policy.
binary_policy: BinaryPolicySQL Server binary target policy.
timezone_policy: TimezonePolicyTimezone-aware timestamp policy.
nanosecond_policy: NanosecondPolicyNanosecond timestamp precision policy.
uint64_policy: UInt64PolicyUnsigned 64-bit integer policy.
decimal_policy: DecimalPolicyDecimal policy shared by decimal widths.
decimal256_policy: Decimal256PolicyDecimal256-specific policy.
float_policy: FloatPolicyFloating-point policy.
date64_policy: Date64PolicyDate64-specific policy.
Trait Implementations§
Source§impl Clone for PlanOptions
impl Clone for PlanOptions
Source§fn clone(&self) -> PlanOptions
fn clone(&self) -> PlanOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlanOptions
impl Debug for PlanOptions
Source§impl Default for PlanOptions
impl Default for PlanOptions
Source§fn default() -> PlanOptions
fn default() -> PlanOptions
Returns the “default value” for a type. Read more
Source§impl Hash for PlanOptions
impl Hash for PlanOptions
Source§impl PartialEq for PlanOptions
impl PartialEq for PlanOptions
Source§fn eq(&self, other: &PlanOptions) -> bool
fn eq(&self, other: &PlanOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PlanOptions
impl Eq for PlanOptions
impl StructuralPartialEq for PlanOptions
Auto Trait Implementations§
impl Freeze for PlanOptions
impl RefUnwindSafe for PlanOptions
impl Send for PlanOptions
impl Sync for PlanOptions
impl Unpin for PlanOptions
impl UnsafeUnpin for PlanOptions
impl UnwindSafe for PlanOptions
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