pub enum BuildNoCache {
Boolean(bool),
String(String),
}Expand description
A Compose Build no_cache value with its YAML scalar category retained.
Compose accepts either a YAML boolean or a string for this field. Strings, including empty and interpolation-shaped values, remain strings and are never coerced to booleans.
Variants§
Trait Implementations§
Source§impl Clone for BuildNoCache
impl Clone for BuildNoCache
Source§fn clone(&self) -> BuildNoCache
fn clone(&self) -> BuildNoCache
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 BuildNoCache
impl Debug for BuildNoCache
impl Eq for BuildNoCache
Source§impl PartialEq for BuildNoCache
impl PartialEq for BuildNoCache
impl StructuralPartialEq for BuildNoCache
Auto Trait Implementations§
impl Freeze for BuildNoCache
impl RefUnwindSafe for BuildNoCache
impl Send for BuildNoCache
impl Sync for BuildNoCache
impl Unpin for BuildNoCache
impl UnsafeUnpin for BuildNoCache
impl UnwindSafe for BuildNoCache
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