pub struct ImageResolution {
pub image_ref: ImageRef,
pub digest: String,
pub redacted_credential_alias: Option<String>,
}Expand description
Carries image resolution data across a host-port boundary. Constructing the value does not call the host; the port method that receives it documents any adapter, network, or storage effect.
Fields§
§image_ref: ImageRefTyped image ref reference. Resolving or executing it is a separate policy-gated step.
digest: StringDigest used by this record or request.
redacted_credential_alias: Option<String>Optional redacted credential alias value. When absent, callers should use the documented default or skip that optional behavior.
Trait Implementations§
Source§impl Clone for ImageResolution
impl Clone for ImageResolution
Source§fn clone(&self) -> ImageResolution
fn clone(&self) -> ImageResolution
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 ImageResolution
impl Debug for ImageResolution
Source§impl<'de> Deserialize<'de> for ImageResolution
impl<'de> Deserialize<'de> for ImageResolution
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 ImageResolution
impl PartialEq for ImageResolution
Source§fn eq(&self, other: &ImageResolution) -> bool
fn eq(&self, other: &ImageResolution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ImageResolution
impl Serialize for ImageResolution
impl Eq for ImageResolution
impl StructuralPartialEq for ImageResolution
Auto Trait Implementations§
impl Freeze for ImageResolution
impl RefUnwindSafe for ImageResolution
impl Send for ImageResolution
impl Sync for ImageResolution
impl Unpin for ImageResolution
impl UnsafeUnpin for ImageResolution
impl UnwindSafe for ImageResolution
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