pub struct LoggingOptions {
pub app_name: &'static str,
pub logs_dir: PathBuf,
pub level: String,
pub rotation: LogRotation,
pub max_files: Option<usize>,
pub file_enabled: bool,
pub console_enabled: bool,
}Expand description
Resolved logging configuration for an application to initialize its subscriber.
Fields§
§app_name: &'static str§logs_dir: PathBuf§level: String§rotation: LogRotation§max_files: Option<usize>§file_enabled: bool§console_enabled: boolImplementations§
Source§impl LoggingOptions
impl LoggingOptions
pub fn level_from_env(prefix: &str) -> String
pub fn max_files_from_env(prefix: &str) -> Option<usize>
pub fn file_logging_enabled(prefix: &str) -> bool
pub fn resolve( env_prefix: &str, app_name: &'static str, logs_dir: Option<PathBuf>, console_enabled: bool, ) -> LoggingOptions
Trait Implementations§
Source§impl Clone for LoggingOptions
impl Clone for LoggingOptions
Source§fn clone(&self) -> LoggingOptions
fn clone(&self) -> LoggingOptions
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 LoggingOptions
impl RefUnwindSafe for LoggingOptions
impl Send for LoggingOptions
impl Sync for LoggingOptions
impl Unpin for LoggingOptions
impl UnsafeUnpin for LoggingOptions
impl UnwindSafe for LoggingOptions
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more