pub struct SetImageParams<'a> {
pub model_id: &'a str,
pub domain: &'a str,
pub repository: &'a str,
pub reference: &'a str,
}Fields§
§model_id: &'a strThe model’s id.
domain: &'a strThe domain name to load from, i.e “docker.io” or “registry.decthings.com”
repository: &'a strThe repository to use, i.e “library/ubuntu”
reference: &'a strThe tag to use, to, i.e “latest”
Trait Implementations§
Source§impl<'a> Clone for SetImageParams<'a>
impl<'a> Clone for SetImageParams<'a>
Source§fn clone(&self) -> SetImageParams<'a>
fn clone(&self) -> SetImageParams<'a>
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<'a> Debug for SetImageParams<'a>
impl<'a> Debug for SetImageParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for SetImageParams<'a>
impl<'a> RefUnwindSafe for SetImageParams<'a>
impl<'a> Send for SetImageParams<'a>
impl<'a> Sync for SetImageParams<'a>
impl<'a> Unpin for SetImageParams<'a>
impl<'a> UnwindSafe for SetImageParams<'a>
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