Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add serde::Serialize for AllRecordData. #343

Merged
merged 2 commits into from
Oct 2, 2024
Merged

Add serde::Serialize for AllRecordData. #343

merged 2 commits into from
Oct 2, 2024

Conversation

tertsdiepraam
Copy link
Contributor

This helps with the JSON output in dnsi.

Deserialize is left for later, becasue we don't need it yet.

derive(serde::Serialize),
serde(bound(
serialize = "
O: AsRef<[u8]> + octseq::serde::SerializeOctets,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@partim I copied this from elsewhere, but isn't AsRef<[u8]> always enough because we can do octs.as_ref().serialize_octets(serializer)?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right. It’s possible that SerializeOctets was doing more things in an earlier iteration. Or I was just not thinking straight.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, but then you have to do your own Serialize impl, no? This way we can just derive it?

@partim partim changed the title Add serde::Serialize for Opt records Add serde::Serialize for AllRecordData. Oct 2, 2024
@partim partim merged commit 58e6e6e into main Oct 2, 2024
26 checks passed
@partim partim deleted the serialize-opt branch October 2, 2024 16:07
ximon18 pushed a commit that referenced this pull request Oct 3, 2024
This PR adds a `Serialize` impl to `AllRecordData` and as a consequence to
the OPT record and all OPT options, as well as `ParsedName`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants