Rust has a struct update syntax that allows you to create a new struct object from another one by changing only some fields. That looks very convenient and would make me want to use more immutable types.
Has there been any discussion about adding such syntax to Julia? Something along the line of:
struct Point
x::Int
y::Int
z::Int
end
p = Point(1, 2, 3)
q = Point(x = 10, p...) # crazy syntax, just a thought