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 duplicate 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,
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ServiceExt for T
impl<T> ServiceExt for T
Source§fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
fn map_response_body<F>(self, f: F) -> MapResponseBody<Self, F>where
Self: Sized,
Apply a transformation to the response body. Read more
Source§fn decompression(self) -> Decompression<Self>where
Self: Sized,
fn decompression(self) -> Decompression<Self>where
Self: Sized,
Decompress response bodies. Read more
Source§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using HTTP status codes. Read more
Source§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
High level tracing that classifies responses using gRPC headers. Read more