boblaw0@lemmy.world to Rust · edit-22 years agoHow do you order your enums, structs and functions in your files?message-squaremessage-square8linkfedilinkarrow-up115arrow-down10
arrow-up115arrow-down1message-squareHow do you order your enums, structs and functions in your files?boblaw0@lemmy.world to Rust · edit-22 years agomessage-square8linkfedilink
minus-squareKillTheMulelinkfedilinkarrow-up5·2 years agoEnums/Structs first, but those 2 are mixed, and any impl for them will be directly after the definition of the type itsef. Free functions last.
Enums/Structs first, but those 2 are mixed, and any impl for them will be directly after the definition of the type itsef. Free functions last.