pub struct DockerhubDestination {
pub type: EnumDestinationType,
pub credentials: Option<Box<DockerhubCred>>,
pub tag: Option<String>,
pub url: Option<String>,
}Fields§
§type: EnumDestinationType§credentials: Option<Box<DockerhubCred>>§tag: Option<String>§url: Option<String>Implementations§
Source§impl DockerhubDestination
impl DockerhubDestination
pub fn new(type: EnumDestinationType) -> DockerhubDestination
Trait Implementations§
Source§impl Clone for DockerhubDestination
impl Clone for DockerhubDestination
Source§fn clone(&self) -> DockerhubDestination
fn clone(&self) -> DockerhubDestination
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 DockerhubDestination
impl Debug for DockerhubDestination
Source§impl Default for DockerhubDestination
impl Default for DockerhubDestination
Source§fn default() -> DockerhubDestination
fn default() -> DockerhubDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DockerhubDestination
impl<'de> Deserialize<'de> for DockerhubDestination
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 PartialEq for DockerhubDestination
impl PartialEq for DockerhubDestination
Source§impl Serialize for DockerhubDestination
impl Serialize for DockerhubDestination
impl StructuralPartialEq for DockerhubDestination
Auto Trait Implementations§
impl Freeze for DockerhubDestination
impl RefUnwindSafe for DockerhubDestination
impl Send for DockerhubDestination
impl Sync for DockerhubDestination
impl Unpin for DockerhubDestination
impl UnsafeUnpin for DockerhubDestination
impl UnwindSafe for DockerhubDestination
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