Memfault daemon for embedded Linux systems. Observability, logging, crash reporting, and updating all in one service. Learn more at https://docs.memfault.com/
//// Copyright (c) Memfault, Inc.
// See License.txt for details
usecrate::mar::CompressionAlgorithm;usestd::path::PathBuf;useuuid::Uuid;/// CompletedLog represents a log that has been rotated and is ready to be moved into the MAR
/// staging area.
pubstructCompletedLog{pubpath: PathBuf,
pubcid: Uuid,
pubnext_cid: Uuid,
pubcompression: CompressionAlgorithm,
}