Rishad Baniya
Rishad Baniya
I got confused on how the constraint method works on ```layout::Layout```. I was expecting some explanation about ```layout::Layout``` struct and its methods. Is the documentation left empty intentionally for developers...
Was exploring the mongodb driver in rust with juniper, i was trying to retrieve the _id of the mongodb with ```ObjectId```, found out that the traits in this juniper crate...
Make extensive use of the crates like https://github.com/dtolnay/thiserror to create a verbose errors
Tons of Unit Test are there to be added. Shall prepare a plan from where to start soon
Currently this projects lacks CI/CD integrated, a better github actions is needed here and better tests for CI is needed
Few changes have been done on uuencode.rs The crate that was used i.e "uuencode", it seems that it outputs the permission symbols always as "644", which should be in fact...
this is a very early draft
the tests file contain *.cat file (which are the binary catalog file generated by gencat tool available in respective platform i.e OSX and the one that uses GNU) So we...
If i were to put a output device params as something like this ``` let out_device_params = OutputDeviceParameters { sample_rate: 44000 channels_count: 2, channel_sample_count: 1, }; ``` it would work...
`u128` won't parse inside of an untagged enum, whereas other unsigned variant does ```rust #![allow(dead_code, unused_imports)] use serde::Deserialize; use serde_json; fn main() { println!("--- Case 1: u64 inside untagged enum...