Skip to content

Commit

Permalink
Add a few additional TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
belak committed Mar 9, 2024
1 parent d3ebe80 commit f101c57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ where
where
T: ?Sized + serde::Serialize,
{
// TODO: replace with Error
unimplemented!();
}

Expand Down
3 changes: 3 additions & 0 deletions src/value/ser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ impl serde::Serializer for Serializer {
fn serialize_u64(self, _v: u64) -> Result<Self::Ok> {
// This type doesn't fit inside an i32 or i64 which are the only
// officially supported int types in xmlrpc.

// TODO: replace with Error
unimplemented!();
}

Expand Down Expand Up @@ -128,6 +130,7 @@ impl serde::Serializer for Serializer {
where
T: Serialize,
{
// TODO: replace with Error
unimplemented!();
}

Expand Down

0 comments on commit f101c57

Please sign in to comment.