pub struct DeltaCatalogConfig {
pub endpoints: Vec<String>,
pub protocol_version: String,
}Expand description
Catalog configuration and supported endpoints.
Fields§
§endpoints: Vec<String>List of supported endpoints.
protocol_version: StringThe negotiated protocol version (e.g., “1.0”).
Trait Implementations§
Source§impl Clone for DeltaCatalogConfig
impl Clone for DeltaCatalogConfig
Source§fn clone(&self) -> DeltaCatalogConfig
fn clone(&self) -> DeltaCatalogConfig
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 DeltaCatalogConfig
impl Debug for DeltaCatalogConfig
Source§impl<'de> Deserialize<'de> for DeltaCatalogConfig
impl<'de> Deserialize<'de> for DeltaCatalogConfig
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
impl Eq for DeltaCatalogConfig
Source§impl PartialEq for DeltaCatalogConfig
impl PartialEq for DeltaCatalogConfig
Source§impl Serialize for DeltaCatalogConfig
impl Serialize for DeltaCatalogConfig
impl StructuralPartialEq for DeltaCatalogConfig
Auto Trait Implementations§
impl Freeze for DeltaCatalogConfig
impl RefUnwindSafe for DeltaCatalogConfig
impl Send for DeltaCatalogConfig
impl Sync for DeltaCatalogConfig
impl Unpin for DeltaCatalogConfig
impl UnsafeUnpin for DeltaCatalogConfig
impl UnwindSafe for DeltaCatalogConfig
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