I've been meaning to add this feature for a while and just haven't gotten around to it yet. A lot of game engines expect greyscale textures to be packed into multiple channels to save texture memory. Copy red, copy green, and copy blue are very convenient ways to do this for the color channels, but they don't help pack a greyscale mask into the alpha channel. With DXT5 compression the alpha channel is compressed separately so it's a good choice for masks that have high-frequency data or data that doesn't change along with the other masks. This blending mode would copy the contents of the red channel to the alpha channel, eliminating the need to copy your alpha channel mask merged and convert it to a transparency mask every time you change the alpha mask. Putting the red channel into the alpha channel is also useful for DXT5 normal map compression which is still used sometimes for compatibility reasons.
There are a lot of features regarding reading and writing transparency. I might be worthy to check if, while the feature is still not implemented, this request is still valid and the feature still needed.