Struct cassandra_cpp_sys::CassLogMessage_
source · #[repr(C)]pub struct CassLogMessage_ {
pub time_ms: cass_uint64_t,
pub severity: CassLogLevel,
pub file: *const c_char,
pub line: c_int,
pub function: *const c_char,
pub message: [c_char; 1024],
}Expand description
A log message.
Fields§
§time_ms: cass_uint64_tThe millisecond timestamp (since the Epoch) when the message was logged
severity: CassLogLevel< The severity of the log message
file: *const c_char< The file where the message was logged
line: c_int< The line in the file where the message was logged
function: *const c_char< The function where the message was logged
message: [c_char; 1024]< The message
Trait Implementations§
source§impl Clone for CassLogMessage_
impl Clone for CassLogMessage_
source§fn clone(&self) -> CassLogMessage_
fn clone(&self) -> CassLogMessage_
Returns a copy 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 more