pub struct BuildLogEntry {
pub level: BuildLogLevel,
pub message: String,
pub target: Option<String>,
}Expand description
A single build log entry.
Fields§
§level: BuildLogLevelLog level.
message: StringLog message.
target: Option<String>Optional target name context.
Implementations§
Trait Implementations§
Source§impl Clone for BuildLogEntry
impl Clone for BuildLogEntry
Source§fn clone(&self) -> BuildLogEntry
fn clone(&self) -> BuildLogEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 BuildLogEntry
impl Debug for BuildLogEntry
Auto Trait Implementations§
impl Freeze for BuildLogEntry
impl RefUnwindSafe for BuildLogEntry
impl Send for BuildLogEntry
impl Sync for BuildLogEntry
impl Unpin for BuildLogEntry
impl UnsafeUnpin for BuildLogEntry
impl UnwindSafe for BuildLogEntry
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