#[repr(C)]pub struct NT_LogMessage {
pub level: u32,
pub filename: WPI_String,
pub line: u32,
pub message: WPI_String,
}Expand description
NetworkTables log message.
Fields§
§level: u32Log level of the message. See NT_LogLevel.
filename: WPI_StringThe filename of the source file that generated the message.
line: u32The line number in the source file that generated the message.
message: WPI_StringThe message.
Trait Implementations§
Source§impl Clone for NT_LogMessage
impl Clone for NT_LogMessage
Source§fn clone(&self) -> NT_LogMessage
fn clone(&self) -> NT_LogMessage
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 NT_LogMessage
impl Debug for NT_LogMessage
Source§impl Hash for NT_LogMessage
impl Hash for NT_LogMessage
impl Copy for NT_LogMessage
Auto Trait Implementations§
impl Freeze for NT_LogMessage
impl RefUnwindSafe for NT_LogMessage
impl !Send for NT_LogMessage
impl !Sync for NT_LogMessage
impl Unpin for NT_LogMessage
impl UnwindSafe for NT_LogMessage
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