Retrieve the binding value, as type Service
()
| 847 | |
| 848 | // Retrieve the binding value, as type Service |
| 849 | func (r *Binding) AsService() *Service { |
| 850 | q := r.query.Select("asService") |
| 851 | |
| 852 | return &Service{ |
| 853 | query: q, |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | // Retrieve the binding value, as type Socket |
| 858 | func (r *Binding) AsSocket() *Socket { |
no test coverage detected