pub struct LogEntryDto {
pub index: u64,
pub created_at: u64,
pub crate_name: String,
pub level: Level,
pub topic: Option<String>,
pub message: String,
}Expand description
LogEntryDto
Fields§
§index: u64§created_at: u64§crate_name: String§level: Level§topic: Option<String>§message: StringTrait Implementations§
Source§impl CandidType for LogEntryDto
impl CandidType for LogEntryDto
Source§impl Clone for LogEntryDto
impl Clone for LogEntryDto
Source§fn clone(&self) -> LogEntryDto
fn clone(&self) -> LogEntryDto
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 LogEntryDto
impl Debug for LogEntryDto
Auto Trait Implementations§
impl Freeze for LogEntryDto
impl RefUnwindSafe for LogEntryDto
impl Send for LogEntryDto
impl Sync for LogEntryDto
impl Unpin for LogEntryDto
impl UnwindSafe for LogEntryDto
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