#[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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.