inline operator fun <T> PersistentDataContainer.get(key: Key): T? Reads the value under key as T using CBF, or null if there is no value under key.
fun <T : Any> PersistentDataContainer.get(key: Key, serializer: BinarySerializer<T>): T? Reads the value under key as T using serializer, or null if there is no value under key.