The short answer is, this is not possible.
I think the idea of computed properties and stored properties is pretty exclusive.
Speaking of stored properties, think of it as member variables with the function to know when they are set or assigned. They are stored non-computable and, therefore, they can be assigned a value and can be set or assigned by another class or methods outside the class definition.
In the case of computed properties, they are computed every time they are accessed and, therefore, are not saved. I feel that even the idea of customization also does not match Computed Properties, because if you install it, it is not calculated.
In the case of setting, in the property you know when it is installed or assigned, and therefore there will be no need to configure willSet or didSet.
var myProp: String { set {
source share