You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BlobTyBuilder is a struct with a new method for construction and a build method to complete the builder. But it doesn't have any methods to configure the builder or anything like that. So every use is like BlobTyBuilder::new(..).build(). This would be better as a simple function blob(..), since we aren't using it as a builder struct at all.
BlobTyBuilder
is a struct with anew
method for construction and abuild
method to complete the builder. But it doesn't have any methods to configure the builder or anything like that. So every use is likeBlobTyBuilder::new(..).build()
. This would be better as a simple functionblob(..)
, since we aren't using it as a builder struct at all.https://github.com/rust-lang-nursery/rust-bindgen/blob/723e93d1267e58cb1aafd04d221a0dff17e212d9/src/codegen/helpers.rs#L63
The text was updated successfully, but these errors were encountered: