#[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_t
The 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 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 CassLogMessage_
impl Debug for CassLogMessage_
impl Copy for CassLogMessage_
Auto Trait Implementations§
impl Freeze for CassLogMessage_
impl RefUnwindSafe for CassLogMessage_
impl !Send for CassLogMessage_
impl !Sync for CassLogMessage_
impl Unpin for CassLogMessage_
impl UnwindSafe for CassLogMessage_
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