What the title says.
Try it yourself:
from __future__ import annotations
import rerun as rr
rr.init("please_show_something", spawn=True)
rr.log("my_point", rr.Points3D([1, 1, 1]))

from __future__ import annotations
import rerun as rr
rr.init("please_show_something", spawn=True)
rr.log("my_point", rr.Points3D([1, 1, 1]), timeless=True)

What the title says.
Try it yourself: