pub struct ListFieldsParams {
pub encoding: Encoding,
pub schema: Schema,
}Available on crate feature
historical only.Expand description
The parameters for MetadataClient::list_fields(). Use
ListFieldsParams::builder() to get a builder type with all the preset defaults.
Fields§
§encoding: EncodingThe encoding to request fields for.
schema: SchemaThe data record schema to request fields for.
Implementations§
Source§impl ListFieldsParams
impl ListFieldsParams
Sourcepub fn builder() -> ListFieldsParamsBuilder
pub fn builder() -> ListFieldsParamsBuilder
Create an instance of ListFieldsParams using the builder syntax
Trait Implementations§
Source§impl Clone for ListFieldsParams
impl Clone for ListFieldsParams
Source§fn clone(&self) -> ListFieldsParams
fn clone(&self) -> ListFieldsParams
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 ListFieldsParams
impl Debug for ListFieldsParams
Source§impl PartialEq for ListFieldsParams
impl PartialEq for ListFieldsParams
Source§fn eq(&self, other: &ListFieldsParams) -> bool
fn eq(&self, other: &ListFieldsParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ListFieldsParams
impl StructuralPartialEq for ListFieldsParams
Auto Trait Implementations§
impl Freeze for ListFieldsParams
impl RefUnwindSafe for ListFieldsParams
impl Send for ListFieldsParams
impl Sync for ListFieldsParams
impl Unpin for ListFieldsParams
impl UnsafeUnpin for ListFieldsParams
impl UnwindSafe for ListFieldsParams
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