src/dubbo/protocol/triple/stream/client_stream.py [136:152]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def rst(self) -> bool:
        """
        Whether the stream is rest.
        :return: True if the stream is rest, otherwise False.
        :rtype: bool
        """
        return self._rst

    @rst.setter
    def rst(self, value: bool) -> None:
        """
        Set whether the stream is rest.
        :param value: True if the stream is rest, otherwise False.
        :type value: bool
        """
        self._rst = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/dubbo/protocol/triple/stream/server_stream.py [53:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def rst(self) -> bool:
        return self._rst

    @rst.setter
    def rst(self, value: bool) -> None:
        self._rst = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



