#[repr(C)]pub struct rcutils_log_location_t {
pub function_name: *const c_char,
pub file_name: *const c_char,
pub line_number: usize,
}
Expand description
The structure identifying the caller location in the source code.
Fields
function_name: *const c_char
The name of the function containing the log call.
file_name: *const c_char
The name of the source file containing the log call.
line_number: usize
The line number containing the log call.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for rcutils_log_location_t
impl !Send for rcutils_log_location_t
impl !Sync for rcutils_log_location_t
impl Unpin for rcutils_log_location_t
impl UnwindSafe for rcutils_log_location_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more