-
Notifications
You must be signed in to change notification settings - Fork 84
Closed
Labels
Description
Given the following struct:
#[derive(InfluxDbWriteable)]
pub struct SomeData {
#[tag]
pub user_id: String,
pub important: u64
#[ignore_field]
pub not_important: ShadyTypeNotWriteable
}
I'd like to be able to avoid having to implement InfluxDbWriteable
on ShadyTypeNotWriteable
. Is this possible? If not, I'd like to implement it. I wouldn't mind getting some pointers.