sofa icon indicating copy to clipboard operation
sofa copied to clipboard

potentially pointless method

Open danieleades opened this issue 7 years ago • 0 comments

what is the purpose of the get_self(...) method on Client?

    pub fn get_self(&mut self) -> &mut Self {
        self
    }

it returns a mutable reference to self, but you can only call the method if you already have a mutable reference to self.

danieleades avatar Jan 03 '19 16:01 danieleades