Function caller_location

const fn caller_location() -> &'static crate::panic::Location<'static>

Gets a reference to a static Location indicating where it was called.

Note that, unlike most intrinsics, this is safe to call; it does not require an unsafe block. Therefore, implementations must not require the user to uphold any safety invariants.

Consider using core::panic::Location::caller instead.