internal LowLevelNodeTraits(StorageDefinition def, VirtualTable table)
 {
     IsCreated    = true;
     Storage      = def;
     VTable       = table;
     DataPorts    = new DataPortDeclarations();
     KernelLayout = default;
 }
 internal LowLevelNodeTraits(StorageDefinition def, VirtualTable table, DataPortDeclarations portDeclarations, KernelLayout kernelLayout)
 {
     IsCreated    = true;
     Storage      = def;
     VTable       = table;
     DataPorts    = portDeclarations;
     KernelLayout = kernelLayout;
 }