pub struct Composed {
pub files: Vec<(String, Cow<'static, [u8]>)>,
pub receipt: Receipt,
}Expand description
A stage composed and ready to write: every file with its stage-relative path, and the receipt.
Fields§
§files: Vec<(String, Cow<'static, [u8]>)>Every file under the stage root except the receipt, sorted by path.
receipt: ReceiptThe receipt, written last.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Composed
impl RefUnwindSafe for Composed
impl Send for Composed
impl Sync for Composed
impl Unpin for Composed
impl UnsafeUnpin for Composed
impl UnwindSafe for Composed
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