@kwdef is what you want. This lets you do:
@kwdef
@kwdef struct MyType n::Int64 = 3 end b = MyType() b.n == 3