Radish alpha
r
Radicle Job Collaborative Object
Radicle
Git (anonymous pull)
Log in to clone via SSH
make JobId (de)serializable
✗ CI failure Lars Wirzenius committed 11 months ago
commit 3b689e6d6db72a0cb3e67856d4f976e0c1075920
parent 6fef4ae5309426d663129ef0d4a90753d4b366ef
1 failed (1 total) View logs
1 file changed +1 -1
modified src/lib.rs
@@ -82,7 +82,7 @@ pub static TYPENAME: Lazy<TypeName> =
///
/// Identifiers can be used to retrieve a [`Job`] or [`JobMut`] through
/// [`Jobs::get`] and [`Jobs::get_mut`], respectively.
-
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
+
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
pub struct JobId(ObjectId);

impl JobId {