pub struct RegistrySection {
pub url: String,
pub username: Option<String>,
pub password: Option<String>,
}Expand description
Registry connection section.
Fields§
§url: StringBase URL of the Confluent-compatible schema registry.
username: Option<String>Basic-auth username (optional).
password: Option<String>Basic-auth password (optional; use ${VAR} interpolation).
Trait Implementations§
Source§impl Clone for RegistrySection
impl Clone for RegistrySection
Source§fn clone(&self) -> RegistrySection
fn clone(&self) -> RegistrySection
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 RegistrySection
impl Debug for RegistrySection
Source§impl<'de> Deserialize<'de> for RegistrySection
impl<'de> Deserialize<'de> for RegistrySection
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
Auto Trait Implementations§
impl Freeze for RegistrySection
impl RefUnwindSafe for RegistrySection
impl Send for RegistrySection
impl Sync for RegistrySection
impl Unpin for RegistrySection
impl UnsafeUnpin for RegistrySection
impl UnwindSafe for RegistrySection
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