Given a struct:
pub struct Link {
pub text: String,
pub title: String,
pub url: String,
}
Is there a way to find out what the keys are at runtime?
Given a struct:
pub struct Link {
pub text: String,
pub title: String,
pub url: String,
}
Is there a way to find out what the keys are at runtime?