Is this really needs for tid() method to be mutable? I want to make something like this:

void fn(const Task task)
{
    ...
    taskIdToStore = task.tid.toString;
    ....
}

and can't because of 'mutable method vibe.core.task.Task.tid is not callable using a const object'