IsDefault returns true if this struct has default value.
()
| 158 | |
| 159 | // IsDefault returns true if this struct has default value. |
| 160 | func (o CopyOptions) IsDefault() bool { |
| 161 | return o == CopyOptions{} |
| 162 | } |
| 163 | |
| 164 | // CombineWith merges other options into this struct. An error is returned if |
| 165 | // the same option merged multiple times. |