We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what is the purpose of the get_self(...) method on Client?
get_self(...)
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
what is the purpose of the
get_self(...)
method on Client?it returns a mutable reference to self, but you can only call the method if you already have a mutable reference to self.
The text was updated successfully, but these errors were encountered: