diff options
Diffstat (limited to 'rust/rust.go')
| -rw-r--r-- | rust/rust.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/rust/rust.go b/rust/rust.go index ca85d74cc..9196be9c6 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -255,6 +255,22 @@ func (c *Module) IsLlndkPublic() bool { return false } +func (m *Module) IsLlndkHeaders() bool { + return false +} + +func (m *Module) IsLlndkLibrary() bool { + return false +} + +func (mod *Module) KernelHeadersDecorator() bool { + return false +} + +func (m *Module) HasLlndkStubs() bool { + return false +} + func (mod *Module) SdkVersion() string { return "" } |