location.rs 284 B

12345678
  1. /// Information about the location of the call to a component
  2. ///
  3. /// This will be filled in when the dynamiccontext is built, filling in the file:line:column:id format
  4. ///
  5. #[derive(PartialEq, Eq, Clone, Debug, Hash, Default)]
  6. pub struct CallerLocation {
  7. inner: Option<String>,
  8. }