aboutsummaryrefslogtreecommitdiff
path: root/src/primitive/bufferid.rs (follow)
Commit message (Collapse)AuthorAgeLines
* remove references from NetworkList inputHEADmainMax Audron9 days-2/+2
| | | | we do not need to reference stuff here and can just consume it
* NetworkList and signalproxy objects error handlingMax Audron9 days-4/+4
|
* Syncable trait error handlingMax Audron10 days-1/+0
|
* clean up clippy lintsMax Audron10 days-1/+1
|
* replace all match_variant instances with try_intoMax Audron10 days-1/+1
| | | | | | the match_variant macro was unclear, unreadable and no longer needed as we have automaticly derived from implementations for all Variant enum fields now
* temporarly fix nested network repr parsing for variant typesMax Audron2025-07-27-0/+16
|
* implement IdentityIdMax Audron2025-02-26-1/+1
|
* refactor deserialize and serializevariant traitMax Audron2025-02-26-1/+1
| | | | move stuff around a bit to sepperate it out for deserializevariant
* refactor variant serialization codeMax Audron2025-02-26-2/+13
| | | | | Factored out a lot of the serialization of variants into trait's that have auto impl so code duplication is much reduced
* add MsgId and BufferId to objects where neededMax Audron2025-02-26-1/+15
| | | | | | some objects where still handling BufferId or MsgId as their raw types which lead to errors now that the Types are properly parsed in the varinats
* enable transparent repr for msgid and bufferidMax Audron2025-02-25-0/+1
|
* Add BufferId as Rust typeTobias Deiminger2025-02-25-0/+37
Up to now it was represented as i32. If we introduce a newtype for it, we can handle it idiomatically as dedicated Variant::BufferId variant (instead of having it mashed into Variant::UserType).