pub struct DockerHubFullDescription {
pub from_url: Option<DockerHubFromUrl>,
pub from_file: Option<DockerHubFromFile>,
}Expand description
Full description source for DockerHub: either from a URL or a local file.
Fields§
§from_url: Option<DockerHubFromUrl>Fetch full description content from a URL.
from_file: Option<DockerHubFromFile>Read full description content from a local file.
Trait Implementations§
Source§impl Clone for DockerHubFullDescription
impl Clone for DockerHubFullDescription
Source§fn clone(&self) -> DockerHubFullDescription
fn clone(&self) -> DockerHubFullDescription
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 DockerHubFullDescription
impl Debug for DockerHubFullDescription
Source§impl Default for DockerHubFullDescription
impl Default for DockerHubFullDescription
Source§fn default() -> DockerHubFullDescription
fn default() -> DockerHubFullDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DockerHubFullDescriptionwhere
DockerHubFullDescription: Default,
impl<'de> Deserialize<'de> for DockerHubFullDescriptionwhere
DockerHubFullDescription: 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 DockerHubFullDescription
impl JsonSchema for DockerHubFullDescription
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 DockerHubFullDescription
impl RefUnwindSafe for DockerHubFullDescription
impl Send for DockerHubFullDescription
impl Sync for DockerHubFullDescription
impl Unpin for DockerHubFullDescription
impl UnsafeUnpin for DockerHubFullDescription
impl UnwindSafe for DockerHubFullDescription
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