blob: e1cc728d8ece38c2af2e52d9553ca5a0473c8d4b [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package templates
const Union = `
{{- define "UnionDeclaration" }}
fidl_union! {
name: {{ .Name }},
members: [
{{- range .Members }}
{{ .Name }} {
ty: {{ .Type }},
offset: {{ .Offset }},
},
{{- end }}
],
size: {{ .Size }},
align: {{ .Alignment }},
}
{{- end }}
`