pub struct LogLimits {
pub event_log_max_size: u64,
pub event_log_keep_lines: u64,
}Expand description
Log rotation limits in force on the client. Once the event log passes
event_log_max_size only the last event_log_keep_lines lines survive, so
a record from a large build may be missing its first units.
Fields§
§event_log_max_size: u64§event_log_keep_lines: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogLimits
impl<'de> Deserialize<'de> for LogLimits
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for LogLimits
impl StructuralPartialEq for LogLimits
Auto Trait Implementations§
impl Freeze for LogLimits
impl RefUnwindSafe for LogLimits
impl Send for LogLimits
impl Sync for LogLimits
impl Unpin for LogLimits
impl UnsafeUnpin for LogLimits
impl UnwindSafe for LogLimits
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