()
| 990 | } |
| 991 | |
| 992 | func (s Static) Duration() (time.Duration, bool) { |
| 993 | if s.Type != TypeDuration { |
| 994 | return 0, false |
| 995 | } |
| 996 | return time.Duration(s.valScalar), true |
| 997 | } |
| 998 | |
| 999 | func (s Static) Status() (Status, bool) { |
| 1000 | if s.Type != TypeStatus { |
no outgoing calls