SetStatus sets the "status" field.
(n node.Status)
| 426 | |
| 427 | // SetStatus sets the "status" field. |
| 428 | func (nuo *NodeUpdateOne) SetStatus(n node.Status) *NodeUpdateOne { |
| 429 | nuo.mutation.SetStatus(n) |
| 430 | return nuo |
| 431 | } |
| 432 | |
| 433 | // SetNillableStatus sets the "status" field if the given value is not nil. |
| 434 | func (nuo *NodeUpdateOne) SetNillableStatus(n *node.Status) *NodeUpdateOne { |
no test coverage detected