pub struct CuLogEntry {
pub time: CuTime,
pub level: CuLogLevel,
pub msg_index: u32,
pub paramname_indexes: SmallVec<[u32; 10]>,
pub params: SmallVec<[Value; 10]>,
}
Expand description
This is the basic structure for a log entry in Copper.
Fields§
§time: CuTime
§level: CuLogLevel
§msg_index: u32
§paramname_indexes: SmallVec<[u32; 10]>
§params: SmallVec<[Value; 10]>
Implementations§
Trait Implementations§
Source§impl Debug for CuLogEntry
impl Debug for CuLogEntry
Source§impl<Context> Decode<Context> for CuLogEntry
impl<Context> Decode<Context> for CuLogEntry
Source§impl<'de> Deserialize<'de> for CuLogEntry
impl<'de> Deserialize<'de> for CuLogEntry
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
Source§impl Display for CuLogEntry
impl Display for CuLogEntry
Source§impl Encode for CuLogEntry
impl Encode for CuLogEntry
Source§impl PartialEq for CuLogEntry
impl PartialEq for CuLogEntry
Source§impl Serialize for CuLogEntry
impl Serialize for CuLogEntry
impl StructuralPartialEq for CuLogEntry
Auto Trait Implementations§
impl Freeze for CuLogEntry
impl RefUnwindSafe for CuLogEntry
impl Send for CuLogEntry
impl Sync for CuLogEntry
impl Unpin for CuLogEntry
impl UnwindSafe for CuLogEntry
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
Source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()
] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString
]. Read more