pub struct CollectedLogArchiveInfo {
pub file_name: String,
pub content_type: &'static str,
pub encoding: &'static str,
pub entry_count: usize,
pub lxapp_ids: Vec<String>,
}Expand description
Metadata returned after a collected log archive has been uploaded.
Fields§
§file_name: String§content_type: &'static str§encoding: &'static str§entry_count: usize§lxapp_ids: Vec<String>Trait Implementations§
Source§impl Clone for CollectedLogArchiveInfo
impl Clone for CollectedLogArchiveInfo
Source§fn clone(&self) -> CollectedLogArchiveInfo
fn clone(&self) -> CollectedLogArchiveInfo
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 moreAuto Trait Implementations§
impl Freeze for CollectedLogArchiveInfo
impl RefUnwindSafe for CollectedLogArchiveInfo
impl Send for CollectedLogArchiveInfo
impl Sync for CollectedLogArchiveInfo
impl Unpin for CollectedLogArchiveInfo
impl UnsafeUnpin for CollectedLogArchiveInfo
impl UnwindSafe for CollectedLogArchiveInfo
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