pub struct UnboundPartitionSpec { /* private fields */ }Expand description
Unbound partition spec can be built without a schema and later bound to a schema.
They are used to transport schema information as part of the REST specification.
The main difference to PartitionSpec is that the field ids are optional.
Implementations§
Source§impl UnboundPartitionSpec
impl UnboundPartitionSpec
Sourcepub fn builder() -> UnboundPartitionSpecBuilder
pub fn builder() -> UnboundPartitionSpecBuilder
Create unbound partition spec builder
Sourcepub fn bind(self, schema: impl Into<SchemaRef>) -> Result<PartitionSpec>
pub fn bind(self, schema: impl Into<SchemaRef>) -> Result<PartitionSpec>
Bind this unbound partition spec to a schema.
Sourcepub fn fields(&self) -> &[UnboundPartitionField]
pub fn fields(&self) -> &[UnboundPartitionField]
Fields of the partition spec
Sourcepub fn with_spec_id(self, spec_id: i32) -> Self
pub fn with_spec_id(self, spec_id: i32) -> Self
Change the spec id of the partition spec
Trait Implementations§
Source§impl Clone for UnboundPartitionSpec
impl Clone for UnboundPartitionSpec
Source§fn clone(&self) -> UnboundPartitionSpec
fn clone(&self) -> UnboundPartitionSpec
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 UnboundPartitionSpec
impl Debug for UnboundPartitionSpec
Source§impl Default for UnboundPartitionSpec
impl Default for UnboundPartitionSpec
Source§fn default() -> UnboundPartitionSpec
fn default() -> UnboundPartitionSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnboundPartitionSpec
impl<'de> Deserialize<'de> for UnboundPartitionSpec
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
Source§impl From<PartitionSpec> for UnboundPartitionSpec
impl From<PartitionSpec> for UnboundPartitionSpec
Source§fn from(spec: PartitionSpec) -> Self
fn from(spec: PartitionSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnboundPartitionSpec
impl PartialEq for UnboundPartitionSpec
Source§impl Serialize for UnboundPartitionSpec
impl Serialize for UnboundPartitionSpec
impl Eq for UnboundPartitionSpec
impl StructuralPartialEq for UnboundPartitionSpec
Auto Trait Implementations§
impl Freeze for UnboundPartitionSpec
impl RefUnwindSafe for UnboundPartitionSpec
impl Send for UnboundPartitionSpec
impl Sync for UnboundPartitionSpec
impl Unpin for UnboundPartitionSpec
impl UnwindSafe for UnboundPartitionSpec
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more