pub struct DockerHubConfig {
pub username: Option<String>,
pub secret_name: Option<String>,
pub images: Option<Vec<String>>,
pub description: Option<String>,
pub full_description: Option<DockerHubFullDescription>,
pub skip: Option<StringOrBool>,
}Expand description
DockerHub description sync configuration. Pushes image descriptions and README content to DockerHub repositories.
Fields§
§username: Option<String>DockerHub username for authentication.
secret_name: Option<String>Environment variable name containing the DockerHub token.
images: Option<Vec<String>>DockerHub image names to update (e.g. myorg/myapp).
description: Option<String>Short description for the DockerHub repository (max 100 chars).
full_description: Option<DockerHubFullDescription>Full description (README) source for the DockerHub repository.
skip: Option<StringOrBool>Skip this publisher. Accepts bool or template string.
Trait Implementations§
Source§impl Clone for DockerHubConfig
impl Clone for DockerHubConfig
Source§fn clone(&self) -> DockerHubConfig
fn clone(&self) -> DockerHubConfig
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 DockerHubConfig
impl Debug for DockerHubConfig
Source§impl Default for DockerHubConfig
impl Default for DockerHubConfig
Source§fn default() -> DockerHubConfig
fn default() -> DockerHubConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DockerHubConfigwhere
DockerHubConfig: Default,
impl<'de> Deserialize<'de> for DockerHubConfigwhere
DockerHubConfig: Default,
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 JsonSchema for DockerHubConfig
impl JsonSchema for DockerHubConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for DockerHubConfig
impl RefUnwindSafe for DockerHubConfig
impl Send for DockerHubConfig
impl Sync for DockerHubConfig
impl Unpin for DockerHubConfig
impl UnsafeUnpin for DockerHubConfig
impl UnwindSafe for DockerHubConfig
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