pub struct LayerResult {
pub layer: Layer,
pub result: String,
}
Expand description
The stderr/stdout of running the command on a container made of this layer (on top of all earlier layers). If command hit the timeout the result may be truncated or empty.
Fields§
§layer: Layer
§result: String
Trait Implementations§
Source§impl Clone for LayerResult
impl Clone for LayerResult
Source§fn clone(&self) -> LayerResult
fn clone(&self) -> LayerResult
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LayerResult
impl Debug for LayerResult
Source§impl Display for LayerResult
impl Display for LayerResult
Source§impl Ord for LayerResult
impl Ord for LayerResult
Source§fn cmp(&self, other: &LayerResult) -> Ordering
fn cmp(&self, other: &LayerResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LayerResult
impl PartialEq for LayerResult
Source§impl PartialOrd for LayerResult
impl PartialOrd for LayerResult
impl Eq for LayerResult
impl StructuralPartialEq for LayerResult
Auto Trait Implementations§
impl Freeze for LayerResult
impl RefUnwindSafe for LayerResult
impl Send for LayerResult
impl Sync for LayerResult
impl Unpin for LayerResult
impl UnwindSafe for LayerResult
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