Struct docker_pose::RemoteTag
source · pub struct RemoteTag {
pub remote_tag: String,
pub remote_tag_filter: Option<(Regex, bool)>,
pub ignore_unauthorized: bool,
pub verbosity: Verbosity,
pub remote_progress_verbosity: Verbosity,
pub threads: u8,
}Fields§
§remote_tag: Stringreplace tag with remote tag if exists
remote_tag_filter: Option<(Regex, bool)>don’t replace with remote tag unless this regex match the image name / tag, in case the bool is false, the replacing is done if the regex doesn’t match
docker may require to be logged-in to fetch some images info
verbosity: Verbosityverbosity used when fetching remote images info
remote_progress_verbosity: Verbosityshow remote tags found while they are fetched
threads: u8max number of threads used to fetch remote images info
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for RemoteTag
impl Send for RemoteTag
impl Sync for RemoteTag
impl Unpin for RemoteTag
impl UnwindSafe for RemoteTag
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