Sets the contents of the cell to value.
@override Result<(), T> set(T value) { if (_val != null) { return Err(value); } _val = value; return const Ok(()); }