Checking if the line intersects with all of the lines of the rectangle is a great method but remember that another possibility of "overlap" is that the line is fully inside the rectangle, depending on how strict your movement/physics/timestep is.
This is simple to check though; just check if each point of the line is inside the rectangle:
sf::Vector2f linePoint1{};
sf::Vector2f linePoint2{};
sf::FloatRect rect{}; // the rectangle shape bounds should do here
if ((rect.contains(linePoint1) && (rect.contains(linePoint2))
lineIsInsideRect = true;
You could also create a rect from the line points and check to see if that rect overlaps with the rectangle bounds rect.
NOTE: this is in addition to checking if the line intersects with the rectangles edges.