Jeong, YunWon
Jeong, YunWon
I looked this page to solve the problem: https://pypi.org/project/pytest-lazy-fixture/ And it seems it is the README file. (redistribution will be required, right?) Maybe this is a preference, but I also...
I am happy to hear you like this. I was worried a bit because this is my first code in django module. And new django user extension model looks great....
Fixed settings-related problem to install this package.
any progress or requirements to be merged?
@Adela0814 are you sure this is not a vcpkg-bug but a port-bug? I guess #26118 is a port fix.
Though the suggested feature can solve the problem, the issue seems to be solved in different way. For now, deriving for any packed struct is warnings and it seems it...
working command, but need more editing to build: ``` $ bindgen x.h --rust-target 1.47 --opaque-type FndrOpaqueInfo --opaque-type HFSCatalogFolder --opaque-type HFSPlusCatalogFolder --opaque-type HFSCatalogFile --opaque-type HFSPlusCatalogFile --no-layout-tests --no-derive-default --generate functions,types,vars,methods,constructors,destructors -- -x...
[The document](https://doc.rust-lang.org/reference/type-layout.html#the-alignment-modifiers) seems describing `packed(2)` means it is aligned by 2 when layout fits. is it a rustc bug? > For packed, if the specified alignment is greater than the...
I misunderstood the description. ```rust #[repr(C, packed(2))] struct S1 { field: [u8; 16], } #[repr(C, packed(2))] struct S2 { field: [u16; 8], } fn main() { println!("align of {} {}",...
I can tell my suggestion for expected result came from lack of knowledge of rust `packed(N)` and your patch actually fixed the problem. For my case, I may be able...