pub struct RegistryDto {
pub registry_type: Option<String>,
pub registry_hostname: String,
pub namespace: String,
}
Expand description
DTO for Registry
Fields§
§registry_type: Option<String>
§registry_hostname: String
§namespace: String
Trait Implementations§
Source§impl Clone for RegistryDto
impl Clone for RegistryDto
Source§fn clone(&self) -> RegistryDto
fn clone(&self) -> RegistryDto
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 RegistryDto
impl Debug for RegistryDto
Source§impl<'de> Deserialize<'de> for RegistryDto
impl<'de> Deserialize<'de> for RegistryDto
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<Registry> for RegistryDto
impl From<Registry> for RegistryDto
Source§impl From<RegistryDto> for Registry
impl From<RegistryDto> for Registry
Source§fn from(value: RegistryDto) -> Self
fn from(value: RegistryDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RegistryDto
impl RefUnwindSafe for RegistryDto
impl Send for RegistryDto
impl Sync for RegistryDto
impl Unpin for RegistryDto
impl UnwindSafe for RegistryDto
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