MarshalDLSettings returns encoded msg.
(msg *ttnpb.DLSettings)
| 204 | |
| 205 | // MarshalDLSettings returns encoded msg. |
| 206 | func MarshalDLSettings(msg *ttnpb.DLSettings) ([]byte, error) { |
| 207 | return AppendDLSettings(make([]byte, 0, 1), msg) |
| 208 | } |
| 209 | |
| 210 | // UnmarshalDLSettings unmarshals b into msg. |
| 211 | func UnmarshalDLSettings(b []byte, msg *ttnpb.DLSettings) error { |
no test coverage detected