pub struct Docker {
pub source_branch: String,
pub source_commit: String,
pub commit_msg: String,
pub repo: String,
pub cache_tag: String,
pub image_name: String,
/* private fields */
}Expand description
Fields§
§source_branch: StringThe name of the branch or the tag that is currently being tested.
source_commit: StringThe SHA1 hash of the commit being tested.
commit_msg: StringThe message from the commit being tested and built.
repo: StringThe name of the Docker repository being built.
cache_tag: StringThe Docker repository tag being built.
image_name: StringThe name and tag of the Docker repository being built.
(This variable is a combination of DOCKER_REPO:CACHE_TAG.)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Docker
impl RefUnwindSafe for Docker
impl Send for Docker
impl Sync for Docker
impl Unpin for Docker
impl UnwindSafe for Docker
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