How to add custom snippets to rust_analyzer?

I have the following in my init.lua (I am using Kickstart.vim)

local servers = {
  rust_analyzer = {
    completion = {
       snippets = {
           custom = {
           }
       }     
    }
  }
}

This is supposed to remove default snippets because custom is empty. For some reason is doesn’t.