diff options
| author | 2021-04-14 18:53:18 +0000 | |
|---|---|---|
| committer | 2021-04-14 18:53:18 +0000 | |
| commit | e8dfbdfb59ba807b809c368c604b684157747b46 (patch) | |
| tree | dc40e0d21b7e0d34d9e7ef73a2fbeba3ed0ceed1 /rust/rust.go | |
| parent | 9e7bfdae31f8b3bb16a7cb30a19f20881d9dec8f (diff) | |
| parent | 3a7d000d129b9e14cd471f157bf2fcc23621b7ec (diff) | |
Merge "cc: Create a common image mutator interface"
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 "" } |