pub struct CustomPrivateDnsMappingResponse {
pub private_dns_name: Option<String>,
}Expand description
CustomPrivateDnsMapping from the ClickHouse Cloud API, in response
position.
Response variant of CustomPrivateDnsMapping: every field is Option<T>,
so a field the API drops or sends as null deserializes to None instead
of failing.
Fields§
§private_dns_name: Option<String>Trait Implementations§
Source§impl Clone for CustomPrivateDnsMappingResponse
impl Clone for CustomPrivateDnsMappingResponse
Source§fn clone(&self) -> CustomPrivateDnsMappingResponse
fn clone(&self) -> CustomPrivateDnsMappingResponse
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 Default for CustomPrivateDnsMappingResponse
impl Default for CustomPrivateDnsMappingResponse
Source§fn default() -> CustomPrivateDnsMappingResponse
fn default() -> CustomPrivateDnsMappingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomPrivateDnsMappingResponse
impl<'de> Deserialize<'de> for CustomPrivateDnsMappingResponse
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 StructuralPartialEq for CustomPrivateDnsMappingResponse
Auto Trait Implementations§
impl Freeze for CustomPrivateDnsMappingResponse
impl RefUnwindSafe for CustomPrivateDnsMappingResponse
impl Send for CustomPrivateDnsMappingResponse
impl Sync for CustomPrivateDnsMappingResponse
impl Unpin for CustomPrivateDnsMappingResponse
impl UnsafeUnpin for CustomPrivateDnsMappingResponse
impl UnwindSafe for CustomPrivateDnsMappingResponse
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