pub struct ArchiveCompletionView {
pub info_lines: Vec<String>,
pub error_lines: Vec<String>,
pub summary: String,
}Expand description
CLI-facing lines after a successful archive.
Fields§
§info_lines: Vec<String>§error_lines: Vec<String>§summary: StringTrait Implementations§
Source§impl Clone for ArchiveCompletionView
impl Clone for ArchiveCompletionView
Source§fn clone(&self) -> ArchiveCompletionView
fn clone(&self) -> ArchiveCompletionView
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 ArchiveCompletionView
impl Debug for ArchiveCompletionView
impl Eq for ArchiveCompletionView
Source§impl PartialEq for ArchiveCompletionView
impl PartialEq for ArchiveCompletionView
Source§fn eq(&self, other: &ArchiveCompletionView) -> bool
fn eq(&self, other: &ArchiveCompletionView) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArchiveCompletionView
Auto Trait Implementations§
impl Freeze for ArchiveCompletionView
impl RefUnwindSafe for ArchiveCompletionView
impl Send for ArchiveCompletionView
impl Sync for ArchiveCompletionView
impl Unpin for ArchiveCompletionView
impl UnsafeUnpin for ArchiveCompletionView
impl UnwindSafe for ArchiveCompletionView
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