#[non_exhaustive]pub struct CustomImageConfig {
pub image: String,
pub image_project: String,
/* private fields */
}Expand description
CustomImageConfig contains the information r
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.image: StringThe name of the image to use for this node.
image_project: StringThe project containing the image to use for this node.
Implementations§
Source§impl CustomImageConfig
impl CustomImageConfig
Trait Implementations§
Source§impl Clone for CustomImageConfig
impl Clone for CustomImageConfig
Source§fn clone(&self) -> CustomImageConfig
fn clone(&self) -> CustomImageConfig
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 CustomImageConfig
impl Debug for CustomImageConfig
Source§impl Default for CustomImageConfig
impl Default for CustomImageConfig
Source§fn default() -> CustomImageConfig
fn default() -> CustomImageConfig
Returns the “default value” for a type. Read more
Source§impl Message for CustomImageConfig
impl Message for CustomImageConfig
Source§impl PartialEq for CustomImageConfig
impl PartialEq for CustomImageConfig
Source§fn eq(&self, other: &CustomImageConfig) -> bool
fn eq(&self, other: &CustomImageConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomImageConfig
Auto Trait Implementations§
impl Freeze for CustomImageConfig
impl RefUnwindSafe for CustomImageConfig
impl Send for CustomImageConfig
impl Sync for CustomImageConfig
impl Unpin for CustomImageConfig
impl UnsafeUnpin for CustomImageConfig
impl UnwindSafe for CustomImageConfig
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