Skip to content

Instantly share code, notes, and snippets.

@dextero
Last active March 20, 2024 20:47
Show Gist options
  • Save dextero/72cf3722e468be7cdb67a62ce16abc9d to your computer and use it in GitHub Desktop.
Save dextero/72cf3722e468be7cdb67a62ce16abc9d to your computer and use it in GitHub Desktop.
# ran on commit 196f28efb983130341cc5c24c3758abecae0d921 (Add serde feature that adds derive({S,Des}erialize) on BufferObjectFlags)
$ cargo public-api diff @~..@
... compiling ...
Removed items from the public API
=================================
(none)
Changed items in the public API
===============================
(none)
Added items to the public API
=============================
(none)
$ cargo public-api --all-features diff @~..@
... compiling ...
Removed items from the public API
=================================
(none)
Changed items in the public API
===============================
(none)
Added items to the public API
=============================
+impl serde::ser::Serialize for gbm::BufferObjectFlags
+pub fn gbm::BufferObjectFlags::serialize<__S>(&self, __serializer: __S) -> core::result::Result<<__S as serde::ser::Serializer>::Ok, <__S as serde::ser::Serializer>::Error> where __S: serde::ser::Serializer
+impl<'de> serde::de::Deserialize<'de> for gbm::BufferObjectFlags
+pub fn gbm::BufferObjectFlags::deserialize<__D>(__deserializer: __D) -> core::result::Result<Self, <__D as serde::de::Deserializer>::Error> where __D: serde::de::Deserializer<'de>
+impl<T> serde::de::DeserializeOwned for gbm::BufferObjectFlags where T: for<'de> serde::de::Deserialize<'de>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment