• actix_send_websocket 0.1.0/src/lib.rs
    334
    #[allow(clippy::should_implement_trait)]
    335
    impl<E, S> DecodeStream<S>
  • actix-web 4.3.0/src/middleware/default_headers.rs
    60
        /// Panics when resolved header name or value is invalid.
    61
        #[allow(clippy::should_implement_trait)]
    62
        pub fn add(mut self, header: impl TryIntoHeaderPair) -> Self {
  • actyx_sdk 0.3.0/src/language/mod.rs
    302
    #[allow(clippy::should_implement_trait)]
    303
    impl SimpleExpr {
  • all-is-cubes 0.5.0/src/listen/cell.rs
    144
        #[allow(clippy::should_implement_trait)] // TODO: consider renaming
    145
        pub fn borrow(&self) -> &T {
  • aluvm 0.9.0/src/program/segs.rs
    106
        /// data.
    107
        #[allow(clippy::should_implement_trait)]
    108
        pub fn from_iter(
    231
        /// [`LIBS_SEGMENT_MAX_COUNT`].
    232
        #[allow(clippy::should_implement_trait)]
    233
        pub fn from_iter(source: impl IntoIterator<Item = LibId>) -> Result<Self, LibSegOverflow> {
  • archlinux-repo-parser 0.1.6/src/de.rs
    13
    impl<'de> Deserializer<'de> {
    14
        #[allow(clippy::should_implement_trait)]
    15
        pub fn from_str(input: &'de str) -> Self {
  • argwerk 0.20.2/src/helpers.rs
    434
        // iterator.
    435
        #[allow(clippy::should_implement_trait)]
    436
        pub fn next(&mut self) -> Result<Option<String>, InputError> {
  • argwerk-no-std 0.20.2/src/helpers.rs
    435
      // iterator.
    436
      #[allow(clippy::should_implement_trait)]
    437
      pub fn next(&mut self) -> Result<Option<String>, InputError> {
  • ark-api-ffi 0.17.0-pre.15/src/version.rs
    26
        #[allow(clippy::should_implement_trait)] // probably should implement proper `from_str“ trait, but don't care about explicit errors
    27
        pub fn from_str(s: &str) -> Option<Self> {
  • array_map 0.4.0/src/map.rs
    160
      /// Panics if any of the safety requirements in the [`Indexable`](crate::Indexable) trait are wrong
    161
      #[allow(clippy::should_implement_trait)]
    162
      pub fn from_iter<E, I: IntoIterator<Item = (K, V)>>(iter: I) -> Option<Self> {
  • arrow-json 32.0.0/src/reader.rs
    1642
        /// Read the next batch of records
    1643
        #[allow(clippy::should_implement_trait)]
    1644
        pub fn next(&mut self) -> Result<Option<RecordBatch>, ArrowError> {
  • asap 0.10.0/src/claims.rs
    52
    impl Aud {
    53
        #[allow(clippy::should_implement_trait)]
    54
        pub fn from_str<S: Into<String>>(aud: S) -> Aud {
  • async-rustbus 0.1.2/src/rustbus_core/path.rs
    126
        #[inline]
    127
        #[allow(clippy::should_implement_trait)]
    128
        pub fn from_str(s: &str) -> Result<&ObjectPath, InvalidObjectPath> {
  • async-xml 0.2.3/src/reader.rs
    213
        /// Create a new [`PeekingReader`] reading XML event from a [`str`].
    214
        #[allow(clippy::should_implement_trait)]
    215
        pub fn from_str(str: &'r str) -> Self {
  • autocorrect 2.6.1/src/config/mod.rs
    149
        #[allow(clippy::should_implement_trait)]
    150
        pub fn from_str(s: &str) -> Result<Self, Error> {
  • autoincrement 1.0.1/src/atomic.rs
    11
    impl<T: AsyncIncremental> AsyncIncrement<T> {
    12
        #[allow(clippy::should_implement_trait)]
    13
        pub fn pull(&self) -> T {
  • autoincrement 1.0.1/src/sync.rs
    9
    impl<T: Incremental> AutoIncrement<T> {
    10
        #[allow(clippy::should_implement_trait)]
    11
        pub fn pull(&mut self) -> T {
  • axum-extra 0.4.2/src/extract/cookie/mod.rs
    192
        #[must_use]
    193
        #[allow(clippy::should_implement_trait)]
    194
        pub fn add(mut self, cookie: Cookie<'static>) -> Self {
  • axum-extra 0.4.2/src/extract/cookie/private.rs
    239
        #[must_use]
    240
        #[allow(clippy::should_implement_trait)]
    241
        pub fn add(mut self, cookie: Cookie<'static>) -> Self {
  • axum-extra 0.4.2/src/extract/cookie/signed.rs
    257
        #[must_use]
    258
        #[allow(clippy::should_implement_trait)]
    259
        pub fn add(mut self, cookie: Cookie<'static>) -> Self {
  • barter-data 0.6.7/src/streams/builder/multi.rs
    43
        /// method is invoked.
    44
        #[allow(clippy::should_implement_trait)]
    45
        pub fn add<Kind>(mut self, builder: StreamBuilder<Kind>) -> Self
  • base-coroutine 0.2.0/src/event_loop/interest.rs
    67
        /// ```
    68
        #[allow(clippy::should_implement_trait)]
    69
        pub const fn add(self, other: Interest) -> Interest {
  • bayard 0.9.0/src/proto/common.rs
    7
    #[allow(clippy::should_implement_trait)]
    8
    impl Kind {
  • bde 0.2.1/src/byte_string.rs
    72
        #[doc(hidden)]
    73
        #[allow(clippy::should_implement_trait)]
    74
        pub fn into_iter(self) -> <Vec<u8> as IntoIterator>::IntoIter {
  • bellframe 0.11.5/src/place_not.rs
    547
        // think this is too confusing because we won't implement `FromIterator` on `PnBlock` anyway.
    548
        #[allow(clippy::should_implement_trait)]
    549
        pub fn from_iter(
  • bellperson 0.24.1/src/gadgets/num.rs
    465
        #[allow(clippy::should_implement_trait)]
    466
        pub fn add(self, other: &Self) -> Self {
  • bevy_app 0.9.1/src/plugin_group.rs
    112
        // This is not confusing, clippy!
    113
        #[allow(clippy::should_implement_trait)]
    114
        pub fn add<T: Plugin>(mut self, plugin: T) -> Self {
  • bevy_asset 0.9.1/src/handle.rs
    64
        #[inline]
    65
        #[allow(clippy::should_implement_trait)] // `Default` is not implemented for `HandleId`, the default value depends on the asset type
    66
        pub fn default<T: Asset>() -> Self {
  • bevy_ecs 0.9.1/src/system/system_param.rs
    294
        // no it shouldn't clippy
    295
        #[allow(clippy::should_implement_trait)]
    296
        pub fn clone(this: &Self) -> Self {
  • bevy_property 0.3.0/src/property_serde.rs
    19
    impl<'a> Serializable<'a> {
    20
        #[allow(clippy::should_implement_trait)]
    21
        pub fn borrow(&self) -> &dyn erased_serde::Serialize {
  • bevy_prototype_lyon 0.7.2/src/geometry.rs
    91
        /// ```
    92
        #[allow(clippy::should_implement_trait)]
    93
        #[must_use]
  • bevy_prototype_lyon 0.7.2/src/path.rs
    56
        /// ```
    57
        #[allow(clippy::should_implement_trait)]
    58
        #[must_use]
  • bevy_reflect 0.9.1/src/serde/ser.rs
    21
    impl<'a> Serializable<'a> {
    22
        #[allow(clippy::should_implement_trait)]
    23
        pub fn borrow(&self) -> &dyn erased_serde::Serialize {
  • bevy_ron 0.1.3/src/de/mod.rs
    29
        // Cannot implement trait here since output is tied to input lifetime 'de.
    30
        #[allow(clippy::should_implement_trait)]
    31
        pub fn from_str(input: &'de str) -> Result<Self> {
  • bitstr 0.1.2/src/lib.rs
    18
        #[allow(clippy::should_implement_trait)]
    19
        #[inline]
  • Boa 0.13.1/src/syntax/lexer/mod.rs
    174
        // We intentionally don't implement Iterator trait as Result<Option> is cleaner to handle.
    175
        #[allow(clippy::should_implement_trait)]
    176
        pub fn next(&mut self) -> Result<Option<Token>, Error>
  • boa_engine 0.16.0/src/syntax/lexer/mod.rs
    190
        // We intentionally don't implement Iterator trait as Result<Option> is cleaner to handle.
    191
        #[allow(clippy::should_implement_trait)]
    192
        pub fn next(&mut self, interner: &mut Interner) -> Result<Option<Token>, Error>
  • boring 2.1.0/src/asn1.rs
    255
        /// [`ASN1_TIME_set_string`]: https://www.openssl.org/docs/manmaster/man3/ASN1_TIME_set_string.html
    256
        #[allow(clippy::should_implement_trait)]
    257
        pub fn from_str(s: &str) -> Result<Asn1Time, ErrorStack> {
    490
        /// [`OBJ_txt2obj`]: https://www.openssl.org/docs/man1.1.0/man3/OBJ_txt2obj.html
    491
        #[allow(clippy::should_implement_trait)]
    492
        pub fn from_str(txt: &str) -> Result<Asn1Object, ErrorStack> {
  • bramble-data 0.1.1/src/de.rs
    62
        /// Creates a deserializer that deserializes multiple values from a single BDF stream.
    63
        #[allow(clippy::should_implement_trait)]
    64
        pub fn into_iter<'de, T>(self) -> StreamDeserializer<'de, R, T>
  • broker-tokio 0.2.16/src/time/interval.rs
    125
        /// ```
    126
        #[allow(clippy::should_implement_trait)] // TODO: rename (tokio-rs/tokio#1261)
    127
        pub async fn tick(&mut self) -> Instant {
  • byte_set 0.1.3/src/lib.rs
    1062
        #[must_use]
    1063
        #[allow(clippy::should_implement_trait)]
    1064
        pub const fn not(self) -> Self {
    1097
        #[must_use]
    1098
        #[allow(clippy::should_implement_trait)]
    1099
        #[allow(clippy::let_and_return)]
    1122
        #[must_use]
    1123
        #[allow(clippy::should_implement_trait)]
    1124
        pub const fn ne(&self, other: &Self) -> bool {
  • byte-unit 4.0.18/src/byte.rs
    153
        #[inline]
    154
        #[allow(clippy::should_implement_trait)]
    155
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<Byte, ByteError> {
  • byte-unit 4.0.18/src/byte_unit.rs
    76
        /// ```
    77
        #[allow(clippy::should_implement_trait)]
    78
        pub fn from_str<S: AsRef<str>>(unit: S) -> Result<ByteUnit, UnitIncorrectError> {
  • can-dbc 5.0.0/src/lib.rs
    659
        #[allow(clippy::should_implement_trait)]
    660
        #[deprecated(since = "4.0.0", note = "please use `DBC::try_from` instead")]
  • capsule 0.1.5/src/packets/icmp/v6/ndp/mod.rs
    262
        /// parse error is encountered during iteration.
    263
        #[allow(clippy::should_implement_trait)]
    264
        pub fn next(&mut self) -> Result<Option<ImmutableNdpOption<'_>>> {
    384
        /// parse error is encountered during iteration.
    385
        #[allow(clippy::should_implement_trait)]
    386
        pub fn next(&mut self) -> Result<Option<MutableNdpOption<'_>>> {
  • carapax 0.12.0/src/core/chain.rs
    51
        /// Panics when trying to add a handler to a shared chain.
    52
        #[allow(clippy::should_implement_trait)]
    53
        pub fn add<H, I, O>(mut self, handler: H) -> Self
  • cardano-multiplatform-lib 3.1.3/src/ledger/common/value.rs
    37
        // Create a BigNum from a standard rust string representation
    38
        #[allow(clippy::should_implement_trait)]
    39
        pub fn from_str(string: &str) -> Result<BigNum, JsError> {
    497
        // Create an Int from a standard rust string representation
    498
        #[allow(clippy::should_implement_trait)]
    499
        pub fn from_str(string: &str) -> Result<Int, JsError> {
    636
        #[allow(clippy::should_implement_trait)]
    637
        pub fn from_str(string: &str) -> Result<BigInt, JsError> {
  • cargo-rdme 1.1.0/src/lib.rs
    199
        // TODO implement FromStr when ! type is stable.
    200
        #[allow(clippy::should_implement_trait)]
    201
        pub fn from_str(str: impl Into<String>) -> Doc {
    262
        // TODO implement FromStr when ! type is stable.
    263
        #[allow(clippy::should_implement_trait)]
    264
        pub fn from_str(str: impl Into<String>) -> Readme {
  • casbin 2.0.9/src/model/default_model.rs
    46
        #[allow(clippy::should_implement_trait)]
    47
        pub async fn from_str(s: &str) -> Result<DefaultModel> {
  • cell-family 0.1.0/src/iter.rs
    124
        /// the inner iterator.
    125
        #[allow(clippy::should_implement_trait)]
    126
        pub fn next(&mut self) -> Option<&mut T> {
  • cgroups-rs 0.3.0/src/devices.rs
    56
        /// Convert a DeviceType into the character that the kernel recognizes.
    57
        #[allow(clippy::should_implement_trait, clippy::wrong_self_convention)]
    58
        pub fn to_char(&self) -> char {
    95
        /// Convert a DevicePermissions into the character that the kernel recognizes.
    96
        #[allow(clippy::should_implement_trait, clippy::wrong_self_convention)]
    97
        pub fn to_char(&self) -> char {
    137
        /// Convert a string into DevicePermissions.
    138
        #[allow(clippy::should_implement_trait)]
    139
        pub fn from_str(s: &str) -> Result<Vec<DevicePermissions>> {
  • cgroups-rs 0.3.0/src/lib.rs
    888
    impl MaxValue {
    889
        #[allow(clippy::should_implement_trait, clippy::wrong_self_convention)]
    890
        fn to_i64(&self) -> i64 {
  • chinese-lunisolar-calendar 0.1.23/src/earthly_branch.rs
    56
        /// é€éŽå­ć€äø‘ć€åÆ…ć€åÆć€č¾°ć€å·³ć€åˆć€ęœŖć€ē”³ć€é…‰ć€ęˆŒć€äŗ„ē­‰å­—äø²ä¾†å–å¾— `EarthlyBranch` åˆ—čˆ‰åÆ¦é«”ć€‚
    57
        #[allow(clippy::should_implement_trait)]
    58
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/heavenly_stems.rs
    40
        /// é€éŽē”²ć€ä¹™ć€äø™ć€äøć€ęˆŠć€å·±ć€ę›“ć€č¾›ć€å£¬ć€č‘µē­‰å­—äø²ä¾†å–å¾— `HeavenlyStems` åˆ—čˆ‰åÆ¦é«”ć€‚
    41
        #[allow(clippy::should_implement_trait)]
    42
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/lunar_day.rs
    80
        /// é€éŽč¾²ę›†ę—„ęœŸå­—äø²ä¾†å–å¾— `LunarDay` åˆ—čˆ‰åÆ¦é«”ć€‚
    81
        #[allow(clippy::should_implement_trait)]
    82
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/lunar_month.rs
    71
        /// é€éŽč¾²ę›†ęœˆä»½å­—äø²ä¾†å–å¾— `LunarMonth` åˆ—čˆ‰åÆ¦é«”ć€‚
    72
        #[allow(clippy::should_implement_trait)]
    73
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/lunar_year.rs
    16
        /// é€éŽč¾²ę›†å¹“ä»½å­—äø²ä¾†å–å¾— `LunarYear` 實體。
    17
        #[allow(clippy::should_implement_trait)]
    18
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/lunisolar_date.rs
    311
        /// ē”Øäø­ę–‡č¾²ę›†č„æę›†å¹“å’Œč¾²ę›†ęœˆę—„å­—äø²ä¾†ē”¢ē”Ÿ `SolarDate` 實體。
    312
        #[allow(clippy::should_implement_trait)]
    313
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<LunisolarDate, LunisolarError> {
  • chinese-lunisolar-calendar 0.1.23/src/solar_date.rs
    170
        /// ē”Øäø­ę–‡č„æę›†å¹“ęœˆę—„å­—äø²ä¾†ē”¢ē”Ÿ `SolarDate` 實體。
    171
        #[allow(clippy::should_implement_trait)]
    172
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<SolarDate, LunisolarError> {
  • chinese-lunisolar-calendar 0.1.23/src/solar_day.rs
    82
        /// é€éŽč„æę›†ę—„ęœŸå­—äø²ä¾†å–å¾— `SolarDay` åˆ—čˆ‰åÆ¦é«”ć€‚
    83
        #[allow(clippy::should_implement_trait)]
    84
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/solar_month.rs
    44
        /// é€éŽč„æę›†ęœˆä»½å­—äø²ä¾†å–å¾— `SolarMonth` åˆ—čˆ‰åÆ¦é«”ć€‚
    45
        #[allow(clippy::should_implement_trait)]
    46
        #[inline]
  • chinese-lunisolar-calendar 0.1.23/src/solar_year.rs
    15
        /// é€éŽč„æę›†å¹“ä»½å­—äø²ä¾†å–å¾— `SolarYear` 實體。
    16
        #[allow(clippy::should_implement_trait)]
    17
        pub fn from_str<S: AsRef<str>>(s: S) -> Option<SolarYear> {
  • cidr-utils 0.5.10/src/cidr/ip_cidr.rs
    18
    impl IpCidr {
    19
        #[allow(clippy::should_implement_trait)]
    20
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<IpCidr, IpCidrError> {
  • cidr-utils 0.5.10/src/cidr/v4/ipv4_cidr.rs
    113
        #[allow(clippy::should_implement_trait)]
    114
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<Ipv4Cidr, Ipv4CidrError> {
  • cidr-utils 0.5.10/src/cidr/v6/ipv6_cidr.rs
    125
        #[allow(clippy::should_implement_trait)]
    126
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<Ipv6Cidr, Ipv6CidrError> {
  • cmaes 0.2.1/src/lib.rs
    620
        /// state must be done manually as well in this case).
    621
        #[allow(clippy::should_implement_trait)]
    622
        #[must_use]
  • codejam 0.1.0/src/codejam.rs
    33
        #[allow(clippy::should_implement_trait)]
    34
        pub fn next<T: FromStr>(&mut self) -> T {
  • cogo-redis 0.1.0/src/codec_redis.rs
    192
        #[allow(clippy::should_implement_trait)]
    193
        /// Convenience function for building dynamic Redis commands with variable numbers of
  • condor 0.1.6/src/modules/sequential.rs
    43
        /// Appends a layer after all the current layers.
    44
        #[allow(clippy::should_implement_trait)]
    45
        pub fn add<M: NNModule + 'static>(&mut self, layer: M) {
  • conjure-serde 3.5.0/src/json/de/client.rs
    79
        /// Creates a Conjure JSON client deserializer from a `&str`.
    80
        #[allow(clippy::should_implement_trait)] // match serde_json's API
    81
        pub fn from_str(s: &'a str) -> ClientDeserializer<StrRead<'a>> {
  • conjure-serde 3.5.0/src/json/de/server.rs
    79
        /// Creates a Conjure JSON server deserializer from a `&str`.
    80
        #[allow(clippy::should_implement_trait)] // match serde_json's API
    81
        pub fn from_str(s: &'a str) -> ServerDeserializer<StrRead<'a>> {
  • contrie 0.1.4/src/raw/iterator.rs
    81
        /// lifetime of the iterator structure.
    82
        #[allow(clippy::should_implement_trait)]
    83
        pub fn next(&mut self) -> Option<&C::Payload> {
  • cp-rs 0.2.3/src/io.rs
    409
    impl Io<&[u8], Stdout> {
    410
        #[allow(clippy::should_implement_trait)]
    411
        /// This function creates an io handler from a &str which can be used to make parsing easier.
  • cpp_core 0.6.0/src/cpp_box.rs
    149
        /// This operation is safe as long as `self` is valid.
    150
        #[allow(clippy::should_implement_trait)]
    151
        pub unsafe fn as_ref(&self) -> Ref<T> {
  • cpp_map 0.1.1/src/lib.rs
    982
        #[allow(clippy::should_implement_trait)]
    983
        #[inline(always)]
  • cpp_utils 0.3.0/src/cpp_box.rs
    153
        /// This operation is safe as long as `self` is valid.
    154
        #[allow(clippy::should_implement_trait)]
    155
        pub unsafe fn as_ref(&self) -> Ref<T> {
    163
        /// This operation is safe as long as `self` is valid.
    164
        #[allow(clippy::should_implement_trait)]
    165
        pub unsafe fn as_mut_ref(&mut self) -> MutRef<T> {
  • crony 0.3.0/src/lib.rs
    207
        /// **panics** if you try to push a job onto already started runner
    208
        #[allow(clippy::should_implement_trait)]
    209
        pub fn add(mut self, job: Box<dyn Job>) -> Self {
  • cs_serde_bytes 0.12.2/src/bytebuf.rs
    81
        #[doc(hidden)]
    82
        #[allow(clippy::should_implement_trait)]
    83
        pub fn into_iter(self) -> <Vec<u8> as IntoIterator>::IntoIter {
  • cs_serde_cbor 0.12.0/src/de.rs
    230
        /// Turn a CBOR deserializer into an iterator over values of type T.
    231
        #[allow(clippy::should_implement_trait)] // Trait doesn't allow unconstrained T.
    232
        pub fn into_iter<T>(self) -> StreamDeserializer<'de, R, T>
  • csh-ldap 0.2.1/src/search.rs
    30
        #[allow(clippy::should_implement_trait)]
    31
        #[must_use]
  • csp 1.1.0/src/lib.rs
    500
      #[allow(clippy::should_implement_trait)]
    501
      #[deprecated(since = "1.0.0", note = "please use `push` instead")]
    542
      #[allow(clippy::should_implement_trait)]
    543
      #[deprecated(since = "1.0.0", note = "please use `push` instead")]
    584
      #[allow(clippy::should_implement_trait)]
    585
      #[deprecated(since = "1.0.0", note = "please use `push` instead")]
    627
      #[allow(clippy::should_implement_trait)]
    628
      #[deprecated(since = "1.0.0", note = "please use `push` instead")]
    669
      #[allow(clippy::should_implement_trait)]
    670
      #[deprecated(since = "1.0.0", note = "please use `push` instead")]
  • css-style 0.14.1/src/transition.rs
    121
        #[allow(clippy::should_implement_trait)]
    122
        pub fn insert(
  • cust 0.3.2/src/memory/pointer.rs
    214
        /// ```
    215
        #[allow(clippy::should_implement_trait)]
    216
        pub unsafe fn add(self, count: usize) -> Self
    255
        /// }
    256
        #[allow(clippy::should_implement_trait)]
    257
        pub unsafe fn sub(self, count: usize) -> Self
    558
        /// ```
    559
        #[allow(clippy::should_implement_trait)]
    560
        pub unsafe fn add(self, count: usize) -> Self
    599
        /// }
    600
        #[allow(clippy::should_implement_trait)]
    601
        pub unsafe fn sub(self, count: usize) -> Self
  • cust 0.3.2/src/module.rs
    307
        )]
    308
        #[allow(clippy::should_implement_trait)]
    309
        pub fn from_str<T: AsRef<str>>(string: T) -> CudaResult<Module> {
  • datafusion 17.0.0/src/avro_to_arrow/arrow_array_reader.rs
    90
        /// Read the next batch of records
    91
        #[allow(clippy::should_implement_trait)]
    92
        pub fn next_batch(&mut self, batch_size: usize) -> ArrowResult<Option<RecordBatch>> {
  • datafusion 17.0.0/src/avro_to_arrow/reader.rs
    156
        /// are no more results
    157
        #[allow(clippy::should_implement_trait)]
    158
        pub fn next(&mut self) -> ArrowResult<Option<RecordBatch>> {
  • datafusion-expr 17.0.0/src/expr.rs
    671
        /// Return `!self`
    672
        #[allow(clippy::should_implement_trait)]
    673
        pub fn not(self) -> Expr {
  • datetime-string 0.2.2/src/common/hms6_colon.rs
    174
        // `FromStr` trait cannot be implemented for a slice.
    175
        #[allow(clippy::should_implement_trait)]
    176
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/common/secfrac_digits.rs
    121
        // `FromStr` trait cannot be implemented for a slice.
    122
        #[allow(clippy::should_implement_trait)]
    123
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/common/time_num_offset_colon.rs
    159
        // `FromStr` trait cannot be implemented for a slice.
    160
        #[allow(clippy::should_implement_trait)]
    161
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/common/ymd8_hyphen.rs
    156
        // `FromStr` trait cannot be implemented for a slice.
    157
        #[allow(clippy::should_implement_trait)]
    158
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/rfc3339/date_time.rs
    133
        // `FromStr` trait cannot be implemented for a slice.
    134
        #[allow(clippy::should_implement_trait)]
    135
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/rfc3339/full_time.rs
    114
        // `FromStr` trait cannot be implemented for a slice.
    115
        #[allow(clippy::should_implement_trait)]
    116
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/rfc3339/offset.rs
    122
        // `FromStr` trait cannot be implemented for a slice.
    123
        #[allow(clippy::should_implement_trait)]
    124
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/rfc3339/partial_time.rs
    122
        // `FromStr` trait cannot be implemented for a slice.
    123
        #[allow(clippy::should_implement_trait)]
    124
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • datetime-string 0.2.2/src/rfc3339/secfrac.rs
    123
        // `FromStr` trait cannot be implemented for a slice.
    124
        #[allow(clippy::should_implement_trait)]
    125
        pub fn from_str(s: &str) -> Result<&Self, Error> {
  • dbgen 0.8.0/src/number.rs
    103
    #[allow(clippy::should_implement_trait)]
    104
    impl Number {
  • deser 0.8.0/src/de/owned.rs
    74
        /// Immutably borrows from an owned sink.
    75
        #[allow(clippy::should_implement_trait)]
    76
        pub fn borrow(&self) -> &SinkHandle<'_> {
    80
        /// Mutably borrows from the owned sink.
    81
        #[allow(clippy::should_implement_trait)]
    82
        pub fn borrow_mut(&mut self) -> &mut SinkHandle<'_> {
  • deser 0.8.0/src/ser/driver.rs
    111
        /// The driver will panic if the data fed from the serializer is malformed.
    112
        #[allow(clippy::should_implement_trait)]
    113
        pub fn next(&mut self) -> Result<Option<(Event, &dyn Descriptor, &SerializerState)>, Error> {
  • did_url 0.1.0/src/input.rs
    31
      #[allow(clippy::should_implement_trait)]
    32
      pub fn next(&mut self) -> Option<char> {
  • diffy 0.3.0/src/patch/mod.rs
    90
        /// ```
    91
        #[allow(clippy::should_implement_trait)]
    92
        pub fn from_str(s: &'a str) -> Result<Patch<'a, str>, ParsePatchError> {
  • dioxus-cli 0.3.0/src/tools.rs
    62
    #[allow(clippy::should_implement_trait)]
    63
    impl Tool {
  • display_utils 0.4.0/src/lib.rs
    846
    /// ```
    847
    #[allow(clippy::should_implement_trait)] // for some unholy reason we can't do this
    848
    pub fn cmp<T: core::fmt::Display>(this: T, other: &str) -> core::cmp::Ordering {
  • dns-resolver 0.2.11/src/lib.rs
    499
        #[allow(clippy::should_implement_trait)]
    500
        pub fn next(&mut self) -> bool {
  • dockerfile-rs 0.3.0/src/builder.rs
    95
        #[allow(clippy::should_implement_trait)]
    96
        pub fn add(self, add: Add) -> Self {
  • domain 0.7.1/src/base/serial.rs
    80
        /// This method panics if `other` is greater than `2^31 - 1`.
    81
        #[allow(clippy::should_implement_trait)]
    82
        pub fn add(self, other: u32) -> Self {
  • domain 0.7.1/src/resolv/stub/mod.rs
    697
        #[allow(clippy::should_implement_trait)]
    698
        pub fn next(&mut self) -> bool {
  • domain-resolv 0.5.1/src/stub/mod.rs
    684
        #[allow(clippy::should_implement_trait)]
    685
        pub fn next(&mut self) -> bool {
  • dprint-core 0.60.0/src/configuration.rs
    112
      #[allow(clippy::should_implement_trait)]
    113
      pub fn from_str(value: &str) -> ConfigKeyValue {
  • duckdb 0.6.1/src/row.rs
    42
        /// return types that implement `Iterator`.
    43
        #[allow(clippy::should_implement_trait)] // cannot implement Iterator
    44
        #[inline]
  • easy-ml 1.8.2/src/matrices/slices.rs
    77
         */
    78
        #[allow(clippy::should_implement_trait)]
    79
        pub fn not(self) -> Slice {
  • either 1.8.1/src/lib.rs
    459
        /// ```
    460
        #[allow(clippy::should_implement_trait)]
    461
        pub fn into_iter(self) -> Either<L::IntoIter, R::IntoIter>
  • emacs 0.18.0/src/value.rs
    60
        // TODO: Decide what we want for PartialEq (==, !=): eq vs. eql vs. equal.
    61
        #[allow(clippy::should_implement_trait)]
    62
        pub fn eq(&self, other: Value<'e>) -> bool {
  • embedded-svc 0.24.0/src/utils/asyncify/mqtt.rs
    272
        {
    273
            #[allow(clippy::should_implement_trait)]
    274
            pub fn next(&mut self) -> NextFuture<'_, CV, M, E> {
  • emplacable 0.1.0-alpha.5/src/lib.rs
    562
        /// this function may panic or otherwise misbehave (but will not trigger UB).
    563
        #[allow(clippy::should_implement_trait)] // We only take `ExactSizeIterator`s
    564
        #[inline]
  • entab 0.3.1/src/parsers/agilent/masshunter.rs
    187
        /// If the next record can't be read, returns an error.
    188
        #[allow(clippy::should_implement_trait)]
    189
        pub fn next(&mut self) -> Result<Option<MasshunterDadRecord>, EtError> {
  • entity-tag 0.1.6/src/lib.rs
    246
        /// Parse and construct a new EntityTag from a `str`.
    247
        #[allow(clippy::should_implement_trait)]
    248
        pub fn from_str<S: ?Sized + AsRef<str>>(etag: &'t S) -> Result<Self, EntityTagError> {
  • erg_compiler 0.6.3/ty/predicate.rs
    125
        #[allow(clippy::should_implement_trait)]
    126
        pub fn not(pred: Predicate) -> Self {
  • erg_parser 0.6.3/ast.rs
    2139
        #[allow(clippy::should_implement_trait)]
    2140
        pub fn not(lhs: TypeSpec) -> Self {
    2315
        #[allow(clippy::should_implement_trait)]
    2316
        pub fn from_str(symbol: Str) -> Self {
  • erg_parser 0.6.3/lex.rs
    163
        #[allow(clippy::should_implement_trait)]
    164
        pub fn from_str(src: String) -> Self {
  • ergo-lib-wasm 0.22.0/src/address.rs
    167
        /// Decode (base58) address from string without checking the network prefix
    168
        #[allow(clippy::should_implement_trait)]
    169
        pub fn from_base58(s: &str) -> Result<Address, JsValue> {
  • ergo-lib-wasm 0.22.0/src/block_header.rs
    44
        /// Parse from base 16 encoded string
    45
        #[allow(clippy::should_implement_trait)]
    46
        pub fn from_str(id: &str) -> Result<BlockId, JsValue> {
  • ergo-lib-wasm 0.22.0/src/ergo_box.rs
    50
        /// Parse box id (32 byte digest) from base16-encoded string
    51
        #[allow(clippy::should_implement_trait)]
    52
        pub fn from_str(box_id_str: String) -> Result<BoxId, JsValue> {
  • ergo-lib-wasm 0.22.0/src/token.rs
    31
        /// Parse token id (32 byte digest) from base16-encoded string
    32
        #[allow(clippy::should_implement_trait)]
    33
        pub fn from_str(str: &str) -> Result<TokenId, JsValue> {
  • ergo-lib-wasm 0.22.0/src/transaction.rs
    162
        /// convert a hex string into a TxId
    163
        #[allow(clippy::should_implement_trait)]
    164
        pub fn from_str(s: &str) -> Result<TxId, JsValue> {
  • ergo-lib-wasm 0.22.0/src/utils.rs
    31
        /// Create from a standard rust string representation
    32
        #[allow(clippy::should_implement_trait)]
    33
        pub fn from_str(string: &str) -> Result<I64, JsValue> {
  • esp-idf-svc 0.45.0/src/ws/client.rs
    325
        // at the same time, which is not given here
    326
        #[allow(clippy::should_implement_trait)]
    327
        pub fn next(&mut self) -> Option<Result<WebSocketEvent<'_>, EspIOError>> {
  • falcon 0.5.4/lib/il/expression.rs
    358
        /// The sort of the lhs and the rhs are not the same
    359
        #[allow(clippy::should_implement_trait)]
    360
        pub fn add(lhs: Expression, rhs: Expression) -> Result<Expression> {
    367
        /// The sort of the lhs and the rhs are not the same.
    368
        #[allow(clippy::should_implement_trait)]
    369
        pub fn sub(lhs: Expression, rhs: Expression) -> Result<Expression> {
    376
        /// The sort of the lhs and the rhs are not the same.
    377
        #[allow(clippy::should_implement_trait)]
    378
        pub fn mul(lhs: Expression, rhs: Expression) -> Result<Expression> {
    441
        /// The sort of the lhs and the rhs are not the same.
    442
        #[allow(clippy::should_implement_trait)]
    443
        pub fn shl(lhs: Expression, rhs: Expression) -> Result<Expression> {
    450
        /// The sort of the lhs and the rhs are not the same.
    451
        #[allow(clippy::should_implement_trait)]
    452
        pub fn shr(lhs: Expression, rhs: Expression) -> Result<Expression> {
  • falcon-raptor 0.5.2/lib/ir/expression.rs
    425
        #[allow(clippy::should_implement_trait)]
    426
        pub fn add(lhs: Expression<V>, rhs: Expression<V>) -> Result<Expression<V>> {
    433
        #[allow(clippy::should_implement_trait)]
    434
        pub fn sub(lhs: Expression<V>, rhs: Expression<V>) -> Result<Expression<V>> {
    441
        #[allow(clippy::should_implement_trait)]
    442
        pub fn mul(lhs: Expression<V>, rhs: Expression<V>) -> Result<Expression<V>> {
    498
        #[allow(clippy::should_implement_trait)]
    499
        pub fn shl(lhs: Expression<V>, rhs: Expression<V>) -> Result<Expression<V>> {
    506
        #[allow(clippy::should_implement_trait)]
    507
        pub fn shr(lhs: Expression<V>, rhs: Expression<V>) -> Result<Expression<V>> {
  • fastnbt 2.3.2/src/stream.rs
    225
        /// Parse the next value from the input.
    226
        #[allow(clippy::should_implement_trait)]
    227
        pub fn next(&mut self) -> Result<Value> {
  • fbx_direct 0.6.4/src/reader/mod.rs
    82
        /// Pulls and returns next FBX event from the stream.
    83
        #[allow(clippy::should_implement_trait)]
    84
        pub fn next(&mut self) -> Result<FbxEvent> {
  • fdb 0.3.1/src/key_value.rs
    132
        /// from this one.
    133
        #[allow(clippy::should_implement_trait)]
    134
        pub fn add(self, offset: i32) -> KeySelector {
  • fluence-fork-libp2p-core 0.27.2/src/connection/pool.rs
    844
        /// Obtains the next connection, if any.
    845
        #[allow(clippy::should_implement_trait)]
    846
        pub fn next(&mut self) -> Option<EstablishedConnection<'_, TInEvent>>
  • fluence-fork-libp2p-core 0.27.2/src/network/peer.rs
    664
        /// Obtains the next dialing connection, if any.
    665
        #[allow(clippy::should_implement_trait)]
    666
        pub fn next(&mut self) -> Option<DialingAttempt<'_, TInEvent>> {
  • fluent-uri 0.1.3/src/lib.rs
    575
        // We can't impl `Borrow` due to the limitation of lifetimes.
    576
        #[allow(clippy::should_implement_trait)]
    577
        pub fn borrow(&self) -> &Uri<&str> {
  • fluid-parser 0.1.13/src/lexer.rs
    25
        #[allow(clippy::should_implement_trait)]
    26
        pub fn next(&mut self) -> Token<'a> {
  • fontconfig-rs 0.1.1/src/langset.rs
    98
        #[doc(alias = "FcLangSetCompare")]
    99
        #[allow(clippy::should_implement_trait)]
    100
        pub fn cmp(&self, other: &LangSet) -> LangSetCmp {
  • fortify 0.4.1/src/lib.rs
    214
        /// value, see [`Fortify::with_ref`] and [`Fortify::with_mut`].
    215
        #[allow(clippy::should_implement_trait)]
    216
        // We would like to implement `std::borrow::Borrow`, but it's not possible to specify the
  • fp-collections 0.0.2/src/set.rs
    46
    {
    47
        #[allow(clippy::should_implement_trait, clippy::many_single_char_names)]
    48
        pub fn add(self, x: T) -> Self {
  • framehop 0.7.2/src/unwinder.rs
    151
        /// address could not be read.
    152
        #[allow(clippy::should_implement_trait)]
    153
        pub fn next(&mut self) -> Result<Option<FrameAddress>, Error> {
  • fuel-indexer-lib 0.2.2/src/manifest.rs
    50
    impl Manifest {
    51
        #[allow(clippy::should_implement_trait)]
    52
        pub fn from_str(content: &str) -> ManifestResult<Self> {
  • garando_pos 0.1.0/src/symbol.rs
    27
        /// Maps a string to an identifier with an empty syntax context.
    28
        #[allow(clippy::should_implement_trait)]
    29
        pub fn from_str(string: &str) -> Ident {
  • gazebo 0.8.1/src/cell.rs
    103
        /// See [`Ref.clone`](Ref::clone). Not a self method since that interferes with the [`Deref`](Deref).
    104
        #[allow(clippy::should_implement_trait)]
    105
        pub fn clone(orig: &Self) -> Self {
  • gdk 0.16.2/src/auto/display.rs
    307
        #[doc(alias = "get_default")]
    308
        #[allow(clippy::should_implement_trait)]
    309
        pub fn default() -> Option<Display> {
  • gdk 0.16.2/src/auto/screen.rs
    105
        #[doc(alias = "get_default")]
    106
        #[allow(clippy::should_implement_trait)]
    107
        pub fn default() -> Option<Screen> {
  • gdk4 0.5.5/src/auto/display.rs
    41
        #[doc(alias = "get_default")]
    42
        #[allow(clippy::should_implement_trait)]
    43
        pub fn default() -> Option<Display> {
  • gdnative-core 0.11.3/src/core_types/node_path.rs
    30
        #[inline]
    31
        #[allow(clippy::should_implement_trait)]
    32
        pub fn from_str(path: &str) -> Self {
  • gdnative-core 0.11.3/src/core_types/string.rs
    84
        #[inline]
    85
        #[allow(clippy::should_implement_trait)]
    86
        pub fn from_str<S>(s: S) -> Self
    533
        #[inline]
    534
        #[allow(clippy::should_implement_trait)]
    535
        pub fn from_str<S>(s: S) -> Self
  • gdnative-core 0.11.3/src/object/mod.rs
    909
        #[inline]
    910
        #[allow(clippy::should_implement_trait)]
    911
        pub fn as_ref(self) -> &'a T {
  • gi-repository 0.1.0/src/auto/repository.rs
    81
        #[doc(alias = "get_default")]
    82
        #[allow(clippy::should_implement_trait)]
    83
        pub fn default() -> Option<Repository> {
  • gio 0.16.7/src/auto/application.rs
    56
        #[doc(alias = "get_default")]
    57
        #[allow(clippy::should_implement_trait)]
    58
        pub fn default() -> Option<Application> {
  • gio 0.16.7/src/auto/network_monitor.rs
    34
        #[doc(alias = "get_default")]
    35
        #[allow(clippy::should_implement_trait)]
    36
        pub fn default() -> NetworkMonitor {
  • gio 0.16.7/src/auto/proxy_resolver.rs
    27
        #[doc(alias = "get_default")]
    28
        #[allow(clippy::should_implement_trait)]
    29
        pub fn default() -> ProxyResolver {
  • gio 0.16.7/src/auto/resolver.rs
    47
        #[doc(alias = "get_default")]
    48
        #[allow(clippy::should_implement_trait)]
    49
        pub fn default() -> Resolver {
  • gio 0.16.7/src/auto/settings_backend.rs
    27
        #[doc(alias = "get_default")]
    28
        #[allow(clippy::should_implement_trait)]
    29
        pub fn default() -> SettingsBackend {
  • gio 0.16.7/src/auto/settings_schema_source.rs
    74
        #[doc(alias = "get_default")]
    75
        #[allow(clippy::should_implement_trait)]
    76
        pub fn default() -> Option<SettingsSchemaSource> {
  • gio 0.16.7/src/auto/tls_backend.rs
    23
        #[doc(alias = "get_default")]
    24
        #[allow(clippy::should_implement_trait)]
    25
        pub fn default() -> TlsBackend {
  • gio 0.16.7/src/auto/vfs.rs
    24
        #[doc(alias = "get_default")]
    25
        #[allow(clippy::should_implement_trait)]
    26
        pub fn default() -> Vfs {
  • git-config 0.15.1/src/parse/events.rs
    250
        /// isn't guaranteed.
    251
        #[allow(clippy::should_implement_trait)]
    252
        pub fn from_str(input: &'a str) -> Result<Events<'a>, parse::Error> {
    257
        #[must_use = "iterators are lazy and do nothing unless consumed"]
    258
        #[allow(clippy::should_implement_trait)]
    259
        pub fn into_iter(self) -> impl Iterator<Item = parse::Event<'a>> + std::iter::FusedIterator {
  • glib 0.16.7/src/auto/main_context.rs
    116
        #[doc(alias = "g_main_context_default")]
    117
        #[allow(clippy::should_implement_trait)]
    118
        pub fn default() -> MainContext {
  • glib 0.16.7/src/object.rs
    4205
        #[doc(alias = "g_type_default_interface_ref")]
    4206
        #[allow(clippy::should_implement_trait)]
    4207
        pub fn default() -> InterfaceRef<'static, T> {
  • glib 0.16.7/src/quark.rs
    14
        #[doc(alias = "g_quark_from_string")]
    15
        #[allow(clippy::should_implement_trait)]
    16
        pub fn from_str(s: &str) -> Quark {
  • gltf-json 1.0.0/src/root.rs
    129
        /// Deserialize from a JSON string slice.
    130
        #[allow(clippy::should_implement_trait)]
    131
        pub fn from_str(str_: &str) -> Result<Self, Error> {
  • gluesql-core 0.13.1/src/ast_builder/expr/binary_op.rs
    12
        #[allow(clippy::should_implement_trait)]
    13
        pub fn add<T: Into<Self>>(self, other: T) -> Self {
    17
        #[allow(clippy::should_implement_trait)]
    18
        pub fn sub<T: Into<Self>>(self, other: T) -> Self {
    22
        #[allow(clippy::should_implement_trait)]
    23
        pub fn mul<T: Into<Self>>(self, other: T) -> Self {
    27
        #[allow(clippy::should_implement_trait)]
    28
        pub fn div<T: Into<Self>>(self, other: T) -> Self {
  • gluesql-core 0.13.1/src/ast_builder/expr/unary_op.rs
    9
        }
    10
        #[allow(clippy::should_implement_trait)]
    11
        pub fn negate(self) -> Self {
  • gst-plugin-threadshare 0.9.3/src/dataqueue.rs
    226
        // TODO: implement as a Stream now that we use a StdMutex
    227
        #[allow(clippy::should_implement_trait)]
    228
        pub async fn next(&mut self) -> Option<DataQueueItem> {
  • gst-plugin-threadshare 0.9.3/src/socket.rs
    122
        // tokio::net::UdpSocket which don't implement pollable functions.
    123
        #[allow(clippy::should_implement_trait)]
    124
        pub async fn try_next(
  • gstreamer 0.19.7/src/iterator.rs
    34
    {
    35
        #[allow(clippy::should_implement_trait)]
    36
        #[doc(alias = "gst_iterator_next")]
  • gstreamer 0.19.7/src/structure.rs
    76
        #[allow(clippy::should_implement_trait)]
    77
        pub fn from_iter<'a>(
  • gstreamer-editing-services 0.19.4/src/auto/formatter.rs
    56
        #[doc(alias = "get_default")]
    57
        #[allow(clippy::should_implement_trait)]
    58
        pub fn default() -> Asset {
  • gstreamer-gl 0.19.5/src/auto/gl_memory_allocator.rs
    24
        #[doc(alias = "get_default")]
    25
        #[allow(clippy::should_implement_trait)]
    26
        pub fn default(context: &impl IsA<GLContext>) -> GLMemoryAllocator {
  • gtk 0.16.2/src/auto/clipboard.rs
    314
        #[doc(alias = "get_default")]
    315
        #[allow(clippy::should_implement_trait)]
    316
        pub fn default(display: &gdk::Display) -> Option<Clipboard> {
  • gtk 0.16.2/src/auto/css_provider.rs
    37
        #[doc(alias = "get_default")]
    38
        #[allow(clippy::should_implement_trait)]
    39
        pub fn default() -> Option<CssProvider> {
  • gtk 0.16.2/src/auto/icon_theme.rs
    36
        #[doc(alias = "get_default")]
    37
        #[allow(clippy::should_implement_trait)]
    38
        pub fn default() -> Option<IconTheme> {
  • gtk 0.16.2/src/auto/paper_size.rs
    254
        #[doc(alias = "get_default")]
    255
        #[allow(clippy::should_implement_trait)]
    256
        pub fn default() -> Option<glib::GString> {
  • gtk 0.16.2/src/auto/recent_manager.rs
    46
        #[doc(alias = "get_default")]
    47
        #[allow(clippy::should_implement_trait)]
    48
        pub fn default() -> Option<RecentManager> {
  • gtk 0.16.2/src/auto/settings.rs
    30
        #[doc(alias = "get_default")]
    31
        #[allow(clippy::should_implement_trait)]
    32
        pub fn default() -> Option<Settings> {
  • gtk4 0.5.5/src/auto/paper_size.rs
    255
        #[doc(alias = "get_default")]
    256
        #[allow(clippy::should_implement_trait)]
    257
        pub fn default() -> glib::GString {
  • gtk4 0.5.5/src/auto/recent_manager.rs
    37
        #[doc(alias = "get_default")]
    38
        #[allow(clippy::should_implement_trait)]
    39
        pub fn default() -> RecentManager {
  • gtk4 0.5.5/src/auto/settings.rs
    596
        #[doc(alias = "get_default")]
    597
        #[allow(clippy::should_implement_trait)]
    598
        pub fn default() -> Option<Settings> {
  • hakoniwa 0.4.6/src/sandbox.rs
    43
        /// Create a policy from a string.
    44
        #[allow(clippy::should_implement_trait)]
    45
        pub fn from_str(data: &str) -> Result<Self> {
  • hakoniwa-code-runner 0.2.1/src/config.rs
    60
    impl AppConfig {
    61
        #[allow(clippy::should_implement_trait)]
    62
        pub fn from_str(data: &str) -> Result<Self> {
  • hassium-composite-renderer 0.1.3/src/component.rs
    443
        #[allow(clippy::should_implement_trait)]
    444
        pub fn from_iter<I>(animations: I) -> Self
    765
        #[allow(clippy::should_implement_trait)]
    766
        pub fn from_iter<I>(animations: I) -> Self
  • hematita 0.1.0/src/ast/parser.rs
    101
    	/// Returns the next token, if any.
    102
    	#[allow(clippy::should_implement_trait)] // This will eventually be privated.
    103
    	pub fn next(&mut self) -> Option<LexerResult<Token>> {
  • hime_redist 4.2.0/src/text.rs
    138
        /// Initializes this text
    139
        #[allow(clippy::should_implement_trait)]
    140
        pub fn from_str(content: &'a str) -> Text<'a> {
  • hltas 0.7.0/src/types.rs
    535
        /// ```
    536
        #[allow(clippy::should_implement_trait)] // FromStr does not allow borrowing from the &str.
    537
        pub fn from_str(input: &str) -> Result<Self, read::Error> {
  • hreq 0.8.0/src/body.rs
    225
        /// ```
    226
        #[allow(clippy::should_implement_trait)]
    227
        pub fn from_str(text: &str) -> Self {
  • hvec 0.2.0/src/lib.rs
    437
        /// ```
    438
        #[allow(clippy::should_implement_trait)]
    439
        pub fn into_iter(self) -> HarrenIter {
    766
        /// ```
    767
        #[allow(clippy::should_implement_trait)]
    768
        pub fn next<T: 'static>(&mut self) -> Option<T> {
    843
        /// ```
    844
        #[allow(clippy::should_implement_trait)]
    845
        pub fn next<T: 'static>(&mut self) -> Option<&T> {
    908
        /// ```
    909
        #[allow(clippy::should_implement_trait)]
    910
        pub fn next<T: 'static>(&mut self) -> Option<&mut T> {
  • hyper-router 0.5.0/src/builder.rs
    31
        /// ```
    32
        #[allow(clippy::should_implement_trait)]
    33
        pub fn add(mut self, route: Route) -> RouterBuilder {
  • hyper-routing 0.6.1/src/builder.rs
    31
        /// ```
    32
        #[allow(clippy::should_implement_trait)]
    33
        pub fn add(mut self, route: Route) -> RouterBuilder {
  • ibdl-common 1.2.0/src/post/rating.rs
    41
    #[allow(clippy::should_implement_trait)]
    42
    impl Rating {
  • icrate 0.0.1/src/Foundation/additions/string.rs
    125
        #[doc(alias = "initWithBytes:length:encoding:")]
    126
        #[allow(clippy::should_implement_trait)] // Not really sure of a better name
    127
        pub fn from_str(string: &str) -> Id<Self, Shared> {
  • icu_capi 1.1.0/src/locale.rs
    43
            #[diplomat::rust_link(icu::locid::Locale, Struct)]
    44
            #[allow(clippy::should_implement_trait)]
    45
            pub fn clone(&self) -> Box<ICU4XLocale> {
  • icu_capi 1.1.0/src/segmenter_grapheme.rs
    102
            /// out of range of a 32-bit signed integer.
    103
            #[allow(clippy::should_implement_trait)]
    104
            pub fn next(&mut self) -> i32 {
    114
            /// out of range of a 32-bit signed integer.
    115
            #[allow(clippy::should_implement_trait)]
    116
            pub fn next(&mut self) -> i32 {
    126
            /// out of range of a 32-bit signed integer.
    127
            #[allow(clippy::should_implement_trait)]
    128
            pub fn next(&mut self) -> i32 {
  • icu_capi 1.1.0/src/segmenter_line.rs
    138
            /// out of range of a 32-bit signed integer.
    139
            #[allow(clippy::should_implement_trait)]
    140
            pub fn next(&mut self) -> i32 {
    150
            /// out of range of a 32-bit signed integer.
    151
            #[allow(clippy::should_implement_trait)]
    152
            pub fn next(&mut self) -> i32 {
    162
            /// out of range of a 32-bit signed integer.
    163
            #[allow(clippy::should_implement_trait)]
    164
            pub fn next(&mut self) -> i32 {
  • icu_capi 1.1.0/src/segmenter_sentence.rs
    86
            /// out of range of a 32-bit signed integer.
    87
            #[allow(clippy::should_implement_trait)]
    88
            pub fn next(&mut self) -> i32 {
    98
            /// out of range of a 32-bit signed integer.
    99
            #[allow(clippy::should_implement_trait)]
    100
            pub fn next(&mut self) -> i32 {
    110
            /// out of range of a 32-bit signed integer.
    111
            #[allow(clippy::should_implement_trait)]
    112
            pub fn next(&mut self) -> i32 {
  • idm 0.4.1/src/de/mod.rs
    33
        /// Will fail if the input is not a well-formed IDM outline.
    34
        #[allow(clippy::should_implement_trait)]
    35
        pub fn from_str(input: &'de str) -> Result<Self> {
  • im 15.1.0/src/vector/focus.rs
    520
        /// Panics if the index is out of bounds.
    521
        #[allow(clippy::should_implement_trait)] // would if I could
    522
        pub fn index_mut(&mut self, index: usize) -> &mut A {
  • im-rc 15.1.0/src/vector/focus.rs
    520
        /// Panics if the index is out of bounds.
    521
        #[allow(clippy::should_implement_trait)] // would if I could
    522
        pub fn index_mut(&mut self, index: usize) -> &mut A {
  • image-convert 0.13.0/src/color_name.rs
    39
        /// Get the static string slice of this color name.
    40
        #[allow(clippy::should_implement_trait)]
    41
        pub fn from_str<S: AsRef<str>>(s: S) -> Option<ColorName> {
  • imaged 0.10.1/src/image.rs
    530
        /// Copy an image
    531
        #[allow(clippy::should_implement_trait)]
    532
        pub fn clone<'b>(&self) -> Image<'b> {
  • imbl 2.0.0/src/vector/focus.rs
    654
        /// Panics if the index is out of bounds.
    655
        #[allow(clippy::should_implement_trait)] // would if I could
    656
        pub fn index_mut(&mut self, index: usize) -> &mut A {
  • informalsystems-tonic 0.5.2/src/metadata/value.rs
    312
        /// ```
    313
        #[allow(clippy::should_implement_trait)]
    314
        #[inline]
  • investments 4.16.1/src/currency/cash.rs
    47
        #[allow(clippy::should_implement_trait)]
    48
        pub fn add(mut self, amount: Cash) -> GenericResult<Cash> {
    67
        #[allow(clippy::should_implement_trait)]
    68
        pub fn div(self, amount: Cash) -> GenericResult<Decimal> {
  • ion-rs 0.15.0/src/binary/raw_binary_reader.rs
    288
        // `next()` resembles `Iterator::next`, generating a clippy warning.
    289
        #[allow(clippy::should_implement_trait)]
    290
        fn next(&mut self) -> IonResult<RawStreamItem> {
  • ion-rs 0.15.0/src/reader.rs
    316
        // v-- Clippy complains that `next` resembles `Iterator::next()`
    317
        #[allow(clippy::should_implement_trait)]
    318
        fn next(&mut self) -> IonResult<Self::Item> {
  • ion-rs 0.15.0/src/system_reader.rs
    501
        // `next` resembles `Iterator::next()`
    502
        #[allow(clippy::should_implement_trait)]
    503
        fn next(&mut self) -> IonResult<Self::Item> {
  • iop-morpheus-proto 0.0.16/src/txtype/ops.rs
    23
        #[allow(clippy::should_implement_trait)]
    24
        #[deprecated = "Use push instead"]
  • ipld-collections 0.3.0/src/list.rs
    281
    {
    282
        #[allow(clippy::should_implement_trait)]
    283
        pub async fn next(&mut self) -> Result<Option<T>> {
  • iref 2.2.3/src/iri/mod.rs
    153
    	/// incompatiple with the result storing the input which [`Iri`] does.
    154
    	#[allow(clippy::should_implement_trait)]
    155
    	pub fn from_str(s: &'a str) -> Result<Self, Error> {
  • iref 2.2.3/src/reference/mod.rs
    60
    	/// incompatiple with the result storing the input which [`IriRef`] does.
    61
    	#[allow(clippy::should_implement_trait)]
    62
    	pub fn from_str(s: &'a str) -> Result<Self, Error> {
  • jni 0.20.0/src/wrapper/signature.rs
    119
        // Clippy suggests implementing `FromStr` or renaming it which is not possible in our case.
    120
        #[allow(clippy::should_implement_trait)]
    121
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<TypeSignature> {
  • jpki 0.4.1/src/der.rs
    27
        /// Reads a next octet and seeks the cursor.
    28
        #[allow(clippy::should_implement_trait)]
    29
        pub fn next(&mut self) -> u8 {
  • jsnom 1.0.1/src/lib.rs
    83
        /// ```
    84
        #[allow(clippy::should_implement_trait)]
    85
        // We cannot implement `FromStr` due to lifetimes
  • json-gettext 4.0.5/src/value/value_impl.rs
    36
        #[inline]
    37
        #[allow(clippy::should_implement_trait)]
    38
        pub fn from_str<S: AsRef<str> + ?Sized>(s: &'a S) -> JSONGetTextValue<'a> {
  • json-ld-core 0.12.1/src/flattening/environment.rs
    51
    	#[allow(clippy::should_implement_trait)]
    52
    	pub fn next(&mut self) -> Meta<ValidId<V::Iri, V::BlankId>, M> {
  • jsonrpsee-core 0.16.2/src/client/mod.rs
    350
    	/// access to other stream combinator methods.
    351
    	#[allow(clippy::should_implement_trait)]
    352
    	pub async fn next(&mut self) -> Option<Result<Notif, Error>> {
  • jsonrpsee-types 0.16.2/src/params.rs
    221
    	/// ```
    222
    	#[allow(clippy::should_implement_trait)]
    223
    	pub fn next<T>(&mut self) -> Result<T, CallError>
  • kanata-evsieve 1.3.1/src/signal.rs
    19
    #[allow(clippy::should_implement_trait)]
    20
    impl SigMask {
  • kayrx 0.18.0/src/timer/interval.rs
    94
        /// ```
    95
        #[allow(clippy::should_implement_trait)]
    96
        pub async fn next(&mut self) -> Option<Instant> {
  • kayrx-timer 0.1.1/src/interval.rs
    139
        /// ```
    140
        #[allow(clippy::should_implement_trait)] 
    141
        pub async fn tick(&mut self) -> Instant {
  • kll-compiler 0.1.2/src/parser.rs
    414
    impl<'a> KllFile<'a> {
    415
        #[allow(clippy::should_implement_trait, clippy::result_large_err)]
    416
        pub fn from_str(text: &str) -> Result<KllFile> {
  • krill 0.12.1/src/daemon/http/mod.rs
    569
        #[allow(clippy::should_implement_trait)]
    570
        pub fn next(&mut self) -> Option<&str> {
  • ldap3 0.11.1/src/search.rs
    755
        /// Returns `Ok(None)` at the end of the stream.
    756
        #[allow(clippy::should_implement_trait)]
    757
        pub async fn next(&mut self) -> Result<Option<ResultEntry>> {
  • ldap3 0.11.1/src/sync.rs
    293
        /// See [`SearchStream::next()`](struct.SearchStream.html#method.next).
    294
        #[allow(clippy::should_implement_trait)]
    295
        pub fn next(&mut self) -> Result<Option<ResultEntry>> {
  • lexpr 0.2.6/src/parse/mod.rs
    310
        /// Creates a S-expression parser from a `&str`.
    311
        #[allow(clippy::should_implement_trait)]
    312
        pub fn from_str(s: &'a str) -> Self {
    316
        /// Creates a S-expression parser from a `&str`.
    317
        #[allow(clippy::should_implement_trait)]
    318
        pub fn from_str_custom(s: &'a str, options: Options) -> Self {
  • libeither 0.5.0/src/either.rs
    414
        ///
    415
        #[allow(clippy::should_implement_trait)]
    416
        pub fn into_iter(self) -> Result<Either<L::IntoIter, R::IntoIter>>
  • libmdbx 0.2.0/src/cursor.rs
    214
        /// Position at next data item
    215
        #[allow(clippy::should_implement_trait)]
    216
        pub fn next<Key, Value>(&mut self) -> Result<Option<(Key, Value)>>
  • libnotcurses-sys 3.7.1/src/widgets/tree/methods/tree.rs
    82
        /// *C style function: [nctree_next()][c_api::nctree_next].*
    83
        #[allow(clippy::should_implement_trait)]
    84
        pub fn next(&mut self) -> NcResult<&mut NcTreeItem> {
  • libworker 0.0.1/src/request.rs
    175
        #[allow(clippy::should_implement_trait)]
    176
        pub fn clone(&self) -> Result<Self> {
  • linda 0.2.0/src/method.rs
    68
        /// Return HTTP method as Method object from a &str
    69
        #[allow(clippy::should_implement_trait)]
    70
        pub fn from_str(src: &str) -> Result<Method, InvalidMethod> {
  • liquid-core 0.26.0/src/model/scalar/date.rs
    30
        /// Convert a `str` to `Self`
    31
        #[allow(clippy::should_implement_trait)]
    32
        pub fn from_str(other: &str) -> Option<Self> {
  • liquid-core 0.26.0/src/model/scalar/datetime.rs
    47
        /// Convert a `str` to `Self`
    48
        #[allow(clippy::should_implement_trait)]
    49
        pub fn from_str(other: &str) -> Option<Self> {
  • liquid-core 0.26.0/src/parser/parser.rs
    271
        /// an error is returned instead.
    272
        #[allow(clippy::should_implement_trait)]
    273
        pub fn next(&mut self) -> Result<Option<BlockElement<'a>>> {
  • lofty 0.11.0/src/picture.rs
    72
    impl MimeType {
    73
    	#[allow(clippy::should_implement_trait)]
    74
    	/// Get a `MimeType` from a string
  • lorawan 0.7.1/src/parser.rs
    941
    #[allow(clippy::should_implement_trait)]
    942
    impl<T: AsRef<[u8]>> DevAddr<T> {
  • lorawan-encoding 0.6.2/src/parser.rs
    896
    #[allow(clippy::should_implement_trait)]
    897
    impl<T: AsRef<[u8]>> DevAddr<T> {
  • lrc 0.1.7/src/lib.rs
    99
        /// Create a `Lyrics` instance with a string.
    100
        #[allow(clippy::should_implement_trait)]
    101
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<Lyrics, LyricsError> {
  • lrc 0.1.7/src/tags/time_tag.rs
    18
        /// Create a timestamp with a string.
    19
        #[allow(clippy::should_implement_trait)]
    20
        #[inline]
  • macho-unwind-info 0.3.0/src/lib.rs
    277
    impl<'a> FunctionIter<'a> {
    278
        #[allow(clippy::should_implement_trait)]
    279
        pub fn next(&mut self) -> Result<Option<Function>, Error> {
  • mco-redis 0.1.2/src/codec_redis.rs
    192
        #[allow(clippy::should_implement_trait)]
    193
        /// Convenience function for building dynamic Redis commands with variable numbers of
  • memflow 0.2.0-beta9/src/types/pointer.rs
    257
        /// ```
    258
        #[allow(clippy::should_implement_trait)]
    259
        pub fn add(self, count: umem) -> Self {
    283
        /// ```
    284
        #[allow(clippy::should_implement_trait)]
    285
        pub fn sub(self, count: umem) -> Self {
  • mft2bodyfile 0.7.1/src/intern/usnjrnl.rs
    24
        #[allow(clippy::should_implement_trait)]
    25
        pub fn into_iter(self) -> std::collections::hash_map::IntoIter<KeyType, ValueType> {
  • mhost 0.3.0/src/app/modules/lookup/service_spec.rs
    36
    #[allow(clippy::should_implement_trait)]
    37
    impl ServiceSpec {
  • mhost 0.3.0/src/nameserver/parser.rs
    18
    #[allow(clippy::should_implement_trait)]
    19
    impl NameServerConfig {
  • mhost 0.3.0/src/resources/rdata/parsed_txt/domain_verification.rs
    19
    #[allow(clippy::should_implement_trait)]
    20
    impl<'a> DomainVerification<'a> {
  • mhost 0.3.0/src/resources/rdata/parsed_txt/mod.rs
    24
    #[allow(clippy::should_implement_trait)]
    25
    impl<'a> ParsedTxt<'a> {
  • mhost 0.3.0/src/resources/rdata/parsed_txt/spf.rs
    18
    #[allow(clippy::should_implement_trait)]
    19
    impl<'a> Spf<'a> {
  • minidump-synth 0.15.2/src/lib.rs
    240
        // Perhaps should have been called .add_section().
    241
        #[allow(clippy::should_implement_trait)]
    242
        pub fn add<T>(mut self, section: T) -> SynthMinidump
    570
        // Possibly name this .add_section().
    571
        #[allow(clippy::should_implement_trait)]
    572
        pub fn add(mut self, entry: T) -> Self {
    634
        #[allow(clippy::should_implement_trait)]
    635
        pub fn add(mut self, entry: T) -> Self {
    759
        // Possibly name this .add_section().
    760
        #[allow(clippy::should_implement_trait)]
    761
        pub fn add(mut self, entry: T) -> Self {
    823
        #[allow(clippy::should_implement_trait)]
    824
        pub fn add(mut self, entry: T) -> Self {
  • miniscript 9.0.0/src/expression.rs
    177
        /// Parses a tree from a string
    178
        #[allow(clippy::should_implement_trait)] // Cannot use std::str::FromStr because of lifetimes.
    179
        pub fn from_str(s: &'a str) -> Result<Tree<'a>, Error> {
  • mio 0.8.5/src/interest.rs
    67
        /// ```
    68
        #[allow(clippy::should_implement_trait)]
    69
        pub const fn add(self, other: Interest) -> Interest {
  • mio_wasi 0.8.4/src/interest.rs
    67
        /// ```
    68
        #[allow(clippy::should_implement_trait)]
    69
        pub const fn add(self, other: Interest) -> Interest {
  • mmtk 0.16.0/src/util/address.rs
    203
        // The Add trait function cannot be const.
    204
        #[allow(clippy::should_implement_trait)]
    205
        #[inline(always)]
    212
        // The Sub trait function cannot be const.
    213
        #[allow(clippy::should_implement_trait)]
    214
        #[inline(always)]
  • modio 0.7.1/src/files.rs
    50
        /// Add a file for a mod that this `Files` refers to. [required: token]
    51
        #[allow(clippy::should_implement_trait)]
    52
        pub async fn add(self, options: AddFileOptions) -> Result<File> {
  • modio 0.7.1/src/games.rs
    126
        /// Add tag options. [required: token]
    127
        #[allow(clippy::should_implement_trait)]
    128
        pub async fn add(self, options: AddTagsOptions) -> Result<()> {
  • modio 0.7.1/src/metadata.rs
    48
        /// Add metadata for a mod that this `Metadata` refers to.
    49
        #[allow(clippy::should_implement_trait)]
    50
        pub async fn add(self, metadata: MetadataMap) -> Result<()> {
  • modio 0.7.1/src/mods.rs
    48
        /// Add a mod and return the newly created Modio mod object. [required: token]
    49
        #[allow(clippy::should_implement_trait)]
    50
        pub async fn add(self, options: AddModOptions) -> Result<Mod> {
    287
        /// Add mod dependencies. [required: token]
    288
        #[allow(clippy::should_implement_trait)]
    289
        pub async fn add(self, options: EditDependenciesOptions) -> Result<()> {
    351
        /// Add mod tags. [required: token]
    352
        #[allow(clippy::should_implement_trait)]
    353
        pub async fn add(self, options: EditTagsOptions) -> Result<()> {
  • molt 0.3.1/src/tokenizer.rs
    57
        /// Returns the next character and updates the index.
    58
        #[allow(clippy::should_implement_trait)]
    59
        pub fn next(&mut self) -> Option<char> {
  • molt-ng 0.3.2/src/tokenizer.rs
    57
        /// Returns the next character and updates the index.
    58
        #[allow(clippy::should_implement_trait)]
    59
        pub fn next(&mut self) -> Option<char> {
  • moment 0.1.0/src/moment.rs
    124
        // We want this to emultate Moment.js's API
    125
        #[allow(clippy::should_implement_trait)]
    126
        pub fn add(self, duration: Duration) -> Moment<T> {
  • monument 0.13.4/src/builder/methods.rs
    128
        // TODO: Code example
    129
        #[allow(clippy::should_implement_trait)]
    130
        pub fn add(self, set: &mut MethodSet) -> MethodId {
  • monument 0.13.4/src/builder/mod.rs
    654
        /// [`MusicTypeId`].
    655
        #[allow(clippy::should_implement_trait)]
    656
        pub fn add(self, search: &mut SearchBuilder) -> MusicTypeId {
  • mpd 0.0.12/src/client.rs
    153
        /// Switch to a next song in queue
    154
        #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    155
        pub fn next(&mut self) -> Result<()> {
  • mprober-lib 0.1.10/src/process/process_state.rs
    18
    impl ProcessState {
    19
        #[allow(clippy::should_implement_trait)]
    20
        #[inline]
  • msf-rtp 0.2.0/src/utils.rs
    154
        /// will always be equal to the start index.
    155
        #[allow(clippy::should_implement_trait)]
    156
        pub fn next(&mut self) -> Option<RtpPacket> {
  • msi 0.5.0/src/internal/expr.rs
    14
    #[allow(clippy::should_implement_trait)]
    15
    impl Expr {
  • multisql 0.4.3/src/data/value/methods/unary.rs
    22
    #[allow(clippy::should_implement_trait)] // TODO
    23
    impl Value {
  • nalgebra 0.32.1/src/base/matrix.rs
    546
        #[must_use]
    547
        #[allow(clippy::should_implement_trait)]
    548
        pub fn eq<R2, C2, SB>(&self, other: &Matrix<T, R2, C2, SB>) -> bool
  • ndarray 0.15.6/src/impl_constructors.rs
    76
        /// ```
    77
        #[allow(clippy::should_implement_trait)]
    78
        pub fn from_iter<I: IntoIterator<Item = A>>(iterable: I) -> Self {
  • neptune 8.1.0/src/circuit2.rs
    81
        /// Add two Elts and return Elt::Num tracking the calculation.
    82
        #[allow(clippy::should_implement_trait)]
    83
        pub fn add(self, other: Elt<Scalar>) -> Result<Elt<Scalar>, SynthesisError> {
  • noria 0.6.1/src/internal/proto.rs
    114
        #[doc(hidden)]
    115
        #[allow(clippy::should_implement_trait)]
    116
        pub unsafe fn deref(&self) -> &T {
  • nquads-syntax 0.10.0/src/lexing.rs
    468
    	#[allow(clippy::type_complexity, clippy::should_implement_trait)]
    469
    	pub fn next(&mut self) -> Result<Meta<Option<Token>, Span>, Meta<Error<E>, Span>> {
  • ntex-amqp-codec 0.9.0/src/types/mod.rs
    78
    impl Str {
    79
        #[allow(clippy::should_implement_trait)]
    80
        pub fn from_str(s: &str) -> Str {
  • ntex-redis 0.4.1/src/codec.rs
    194
        #[allow(clippy::should_implement_trait)]
    195
        /// Convenience function for building dynamic Redis commands with variable numbers of
  • nuid 0.4.1/src/lib.rs
    89
        /// Generate the next `NUID` string.
    90
        #[allow(clippy::should_implement_trait)]
    91
        #[allow(clippy::must_use_candidate)]
  • number-encoding 0.2.1/src/factoradics.rs
    225
        /// If iteration is over, returns `None`.
    226
        #[allow(clippy::should_implement_trait)]
    227
        pub fn next(&mut self) -> Option<&[T]> {
  • number-encoding 0.2.1/src/multinadics.rs
    258
        /// If iteration is over, returns `None`.
    259
        #[allow(clippy::should_implement_trait)]
    260
        pub fn next(&mut self) -> Option<&[T]> {
  • oasis-amqp 0.3.0/src/proto.rs
    137
        #[allow(clippy::should_implement_trait)]
    138
        pub async fn next(&mut self) -> Option<Result<BytesFrame, Error>> {
  • objc2-foundation 0.2.0-alpha.6/src/mutable_string.rs
    31
        #[doc(alias = "initWithBytes:length:encoding:")]
    32
        #[allow(clippy::should_implement_trait)] // Not really sure of a better name
    33
        pub fn from_str(string: &str) -> Id<Self, Owned> {
  • objc2-foundation 0.2.0-alpha.6/src/string.rs
    172
        #[doc(alias = "initWithBytes:length:encoding:")]
    173
        #[allow(clippy::should_implement_trait)] // Not really sure of a better name
    174
        pub fn from_str(string: &str) -> Id<Self, Shared> {
  • oc-wasm-safe 0.4.0/src/component.rs
    101
    	///   ideas of the length or formatting of a component address.
    102
    	#[allow(clippy::should_implement_trait)] // It’s very like Iterator::next, but can’t be due to lifetimes.
    103
    	#[allow(clippy::unused_self)] // Not used for its value, but used for its lifetime.
  • ocaml 1.0.0-beta.5/src/types.rs
    264
        #[must_use]
    265
        #[allow(clippy::should_implement_trait)]
    266
        pub unsafe fn add(self, rt: &Runtime, v: &T) -> List<T> {
    304
        /// List iterator
    305
        #[allow(clippy::should_implement_trait)]
    306
        pub fn into_iter(self) -> ListIterator {
  • ockam_core 0.73.0/src/message.rs
    35
        /// Use the first 8 bytes of a string as the protocol ID.
    36
        #[allow(clippy::should_implement_trait)]
    37
        pub fn from_str(s: &str) -> Self {
  • open-vaf 0.4.2/src/symbol.rs
    80
        #[allow(clippy::should_implement_trait)]
    81
        #[must_use]
  • openssl 0.10.45/src/asn1.rs
    339
        #[corresponds(ASN1_TIME_set_string)]
    340
        #[allow(clippy::should_implement_trait)]
    341
        pub fn from_str(s: &str) -> Result<Asn1Time, ErrorStack> {
    597
        #[corresponds(OBJ_txt2obj)]
    598
        #[allow(clippy::should_implement_trait)]
    599
        pub fn from_str(txt: &str) -> Result<Asn1Object, ErrorStack> {
  • openssl 0.10.45/src/conf.rs
    22
            #[corresponds(NCONF_default)]
    23
            #[allow(clippy::should_implement_trait)]
    24
            pub fn default() -> ConfMethod {
  • opml 1.1.5/source/lib.rs
    105
      /// ```
    106
      #[allow(clippy::should_implement_trait)]
    107
      pub fn from_str(xml: &str) -> Result<Self, Error> {
  • os_str_bytes 6.4.1/src/raw_str.rs
    159
        /// [encoding]: super#encoding
    160
        #[allow(clippy::should_implement_trait)]
    161
        #[inline]
  • otter 1.2.1/src/gamestate.rs
    395
    impl UniqueGenGen<'_> {
    396
      #[allow(clippy::should_implement_trait)] // we don't return Option
    397
      pub fn next(&mut self) -> Generation {
  • otter 1.2.1/src/utils.rs
    188
      #[allow(clippy::should_implement_trait)] // yes, but, TAIT
    189
      pub fn into_iter(self) -> impl Iterator<Item=T> {
  • otter-base 1.2.1/geometry.rs
    157
    #[allow(clippy::should_implement_trait)] // this one is fallible, which is a bit odd
    158
    impl<T> PosC<T> {
  • otter-wasm 1.2.1/wasm.rs
    107
    impl ZCoordIterator {
    108
      #[allow(clippy::should_implement_trait)]
    109
      // ^ Yes, but WASM can't call the trait method
  • owlchess 0.3.2/src/chain.rs
    594
        /// is mutated.
    595
        #[allow(clippy::should_implement_trait)] // cannot implement Iterator
    596
        pub fn next(&mut self) -> Option<(&Board, Move)> {
  • owned_json_deserializer 1.0.0/src/lib.rs
    15
        /// Creates an owned JSON deserializer from a `&'static str`.
    16
        #[allow(clippy::should_implement_trait)] // matches method on serde_json::Deserializer
    17
        pub fn from_str(s: &'static str) -> Self {
  • oxygengine-composite-renderer 0.30.0/src/component.rs
    522
        #[allow(clippy::should_implement_trait)]
    523
        pub fn from_iter<I>(animations: I) -> Self
    874
        #[allow(clippy::should_implement_trait)]
    875
        pub fn from_iter<I>(animations: I) -> Self
  • oxygengine-script-web 0.12.5/src/web_api.rs
    63
        // TODO: refactor this shit, please.
    64
        #[allow(clippy::should_implement_trait)]
    65
        pub fn next(&mut self) -> bool {
  • pango 0.16.5/src/auto/language.rs
    67
        #[doc(alias = "get_default")]
    68
        #[allow(clippy::should_implement_trait)]
    69
        pub fn default() -> Language {
  • pangocairo 0.16.3/src/auto/font_map.rs
    22
        #[doc(alias = "get_default")]
    23
        #[allow(clippy::should_implement_trait)]
    24
        pub fn default() -> pango::FontMap {
  • parity-db 0.4.3/src/btree/iter.rs
    112
    	#[allow(clippy::should_implement_trait)]
    113
    	pub fn next(&mut self) -> IterResult {
  • parsel 0.11.0/src/ast.rs
    3760
        /// inherent associated function.
    3761
        #[allow(clippy::should_implement_trait)]
    3762
        pub fn into_iter(self) -> Either<L::IntoIter, R::IntoIter>
  • pcarp 1.4.0/src/lib.rs
    111
        /// it simply calls `advance()` then `get()`.
    112
        #[allow(clippy::should_implement_trait)]
    113
        pub fn next(&mut self) -> Option<Result<Packet>> {
  • pdf 0.8.0/src/parser/lexer/mod.rs
    66
        /// Returns next lexeme. Lexer moves to the next byte after the lexeme. (needs to be tested)
    67
        #[allow(clippy::should_implement_trait)]
    68
        pub fn next(&mut self) -> Result<Substr<'a>> {
  • phile 0.1.4/src/lexer.rs
    190
        #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    191
        fn next(&mut self) -> Result<Option<Token<'a>>> {
  • photondb 0.0.4/src/std.rs
    114
        /// This is a synchronous version of [`raw::Pages::next`].
    115
        #[allow(clippy::should_implement_trait)]
    116
        pub fn next(&mut self) -> Result<Option<PageIter<'_>>> {
  • polars-plan 0.26.1/src/dsl/mod.rs
    266
        /// Negate `Expr`
    267
        #[allow(clippy::should_implement_trait)]
    268
        pub fn not(self) -> Expr {
  • proc-macro0 1.0.40-dev.1/src/lib.rs
    318
        #[doc(hidden)]
    319
        #[allow(clippy::should_implement_trait)]
    320
        /// Compares two spans to see if they're equal.
  • procfs 0.14.2/src/sys/kernel/mod.rs
    49
        /// ```
    50
        #[allow(clippy::should_implement_trait)]
    51
        pub fn from_str(s: &str) -> Result<Self, &'static str> {
  • qsv_currency 0.6.0/src/lib.rs
    108
        /// ```
    109
        #[allow(clippy::should_implement_trait)]
    110
        pub fn from_str(s: &str) -> Result<Currency, ParseCurrencyError> {
  • r3_core 0.1.4/src/hunk.rs
    300
        #[inline]
    301
        #[allow(clippy::should_implement_trait)]
    302
        pub fn as_ref<'a>(this: Self) -> &'a T
  • radiotap 2.0.0-beta.1/src/lib.rs
    294
        /// Returns the next field in the iterator.
    295
        #[allow(clippy::should_implement_trait)]
    296
        pub fn next(&mut self) -> Result<Option<Field>> {
    395
        /// Returns the next field type in the iterator.
    396
        #[allow(clippy::should_implement_trait)]
    397
        pub fn next(&mut self) -> Result<Option<Type>> {
  • rants 0.6.0/src/types.rs
    474
        /// Add a component to the subject
    475
        #[allow(clippy::should_implement_trait)]
    476
        pub fn add(mut self, subject: impl Into<String>) -> Self {
  • rassert 1.3.0/src/core.rs
    109
        #[allow(clippy::should_implement_trait)]
    110
        pub fn not(mut self) -> Self {
  • ratsio 0.4.1/src/nuid.rs
    86
        /// Generate the next `NUID` string.
    87
        #[allow(clippy::should_implement_trait)]
    88
        pub fn next(&mut self) -> String {
  • ratsio_fork_040 0.4.1/src/nuid.rs
    86
        /// Generate the next `NUID` string.
    87
        #[allow(clippy::should_implement_trait)]
    88
        pub fn next(&mut self) -> String {
  • rebound 0.4.4/src/value.rs
    47
    #[allow(clippy::should_implement_trait)]
    48
    impl<'a> Value<'a> {
  • redirectionio 2.5.2/src/html/mod.rs
    161
        #[allow(clippy::should_implement_trait)]
    162
        pub fn next(&mut self) -> Result<TokenType> {
  • reign_router 0.2.1/src/pipe.rs
    19
        #[allow(clippy::should_implement_trait)]
    20
        pub fn add<M>(mut self, middleware: M) -> Self
  • reval 0.5.2/src/expr/mod.rs
    108
        /// Not expression constructor
    109
        #[allow(clippy::should_implement_trait)]
    110
        pub fn not(expr: Expr) -> Self {
    114
        /// Neg expression constructor
    115
        #[allow(clippy::should_implement_trait)]
    116
        pub fn neg(expr: Expr) -> Self {
    140
        /// Divide-expression constructor
    141
        #[allow(clippy::should_implement_trait)]
    142
        pub fn div(left: Expr, right: Expr) -> Self {
    146
        /// Add-expression constructor
    147
        #[allow(clippy::should_implement_trait)]
    148
        pub fn add(left: Expr, right: Expr) -> Self {
    152
        /// Subtract-expression constructor
    153
        #[allow(clippy::should_implement_trait)]
    154
        pub fn sub(left: Expr, right: Expr) -> Self {
  • reverie-zk 0.3.2/src/generator/share.rs
    53
        #[allow(clippy::should_implement_trait)]
    54
        pub fn next(&mut self) -> D::Share {
  • rlbot 0.5.0/src/packeteer.rs
    42
        /// crashed, and waiting longer will not help.
    43
        #[allow(clippy::should_implement_trait)]
    44
        pub fn next(&mut self) -> Result<GameTickPacket, Box<dyn Error>> {
  • rlbot 0.5.0/src/physicist.rs
    39
        /// waiting longer will not help.
    40
        #[allow(clippy::should_implement_trait)]
    41
        #[deprecated(
  • ron 0.8.0/src/de/mod.rs
    32
        // Cannot implement trait here since output is tied to input lifetime 'de.
    33
        #[allow(clippy::should_implement_trait)]
    34
        pub fn from_str(input: &'de str) -> SpannedResult<Self> {
  • ropey 1.5.1/src/rope.rs
    101
        #[inline]
    102
        #[allow(clippy::should_implement_trait)]
    103
        pub fn from_str(text: &str) -> Self {
  • rouille 3.6.1/src/input/multipart.rs
    80
    impl<'a> Multipart<'a> {
    81
        #[allow(clippy::should_implement_trait)]
    82
        pub fn next(&mut self) -> Option<MultipartField<&mut InnerMultipart<RequestBody<'a>>>> {
  • routinator 0.12.1/src/payload.rs
    1165
        #[allow(clippy::should_implement_trait)]
    1166
        pub fn next(&mut self) -> Option<&RouterKey> {
  • rpcap 1.0.0/src/read.rs
    60
        /// Returns `Ok(None)` on EOF, or a packet as long as one is available.
    61
        #[allow(clippy::should_implement_trait)]
    62
        pub fn next(&mut self) -> Result<Option<CapturedPacket>, PcapError> {
  • rpki 0.15.9/src/rtr/state.rs
    137
        /// This method panics if `other` is greater than `2^31 - 1`.
    138
        #[allow(clippy::should_implement_trait)]
    139
        pub fn add(self, other: u32) -> Self {
  • rpki-rtr 0.2.1/src/state.rs
    137
        /// This method panics if `other` is greater than `2^31 - 1`.
    138
        #[allow(clippy::should_implement_trait)]
    139
        pub fn add(self, other: u32) -> Self {
  • rsyn 0.0.1/src/client.rs
    230
        /// ```
    231
        #[allow(clippy::should_implement_trait)]
    232
        // This isn't in FromStr because construction doesn't seem exactly like
  • rtrtr 0.2.2/src/payload.rs
    368
        /// instead of a clone.
    369
        #[allow(clippy::should_implement_trait)] // The name is on purpose.
    370
        pub fn next(&mut self) -> Option<&Payload> {
  • rubble_tea 5.2.1/src/style.rs
    180
        /// Add another style to the style sheet
    181
        #[allow(clippy::should_implement_trait)]
    182
        pub fn add(mut self, s: Style) -> StyleSheet {
  • rudano 0.1.1/src/de.rs
    105
        /// Creates a deserializer from the given `str`.
    106
        #[allow(clippy::should_implement_trait)] // https://github.com/rust-lang/rust-clippy/issues/9762
    107
        pub fn from_str(input: &'de str) -> Self {
  • rune 0.12.0/src/parse/lexer.rs
    473
        /// Consume the next token from the lexer.
    474
        #[allow(clippy::should_implement_trait)]
    475
        pub(crate) fn next(&mut self) -> Result<Option<ast::Token>, ParseError> {
  • rune 0.12.0/src/parse/parser.rs
    143
        /// Consume the next token from the parser.
    144
        #[allow(clippy::should_implement_trait)]
    145
        pub fn next(&mut self) -> Result<Token, ParseError> {
  • rune 0.12.0/src/runtime/generator.rs
    35
        /// Get the next value produced by this stream.
    36
        #[allow(clippy::should_implement_trait)]
    37
        pub fn next(&mut self) -> Result<Option<Value>, VmError> {
  • runestick 0.9.1/src/generator.rs
    23
        /// Get the next value produced by this stream.
    24
        #[allow(clippy::should_implement_trait)]
    25
        pub fn next(&mut self) -> Result<Option<Value>, VmError> {
  • runestr 0.1.10/src/rune_string.rs
    85
        /// be slightly modified to form complete runes.
    86
        #[allow(clippy::should_implement_trait)]
    87
        pub fn from_str(s: &str) -> Option<Self> {
  • rusqlite 0.28.0/src/lib.rs
    1025
        /// Returns `Ok(None)` when batch is completed.
    1026
        #[allow(clippy::should_implement_trait)] // fallible iterator
    1027
        pub fn next(&mut self) -> Result<Option<Statement<'conn>>> {
  • rusqlite 0.28.0/src/row.rs
    34
        /// return types that implement `Iterator`.
    35
        #[allow(clippy::should_implement_trait)] // cannot implement Iterator
    36
        #[inline]
  • rusqlite-ic 0.28.1/src/lib.rs
    1025
        /// Returns `Ok(None)` when batch is completed.
    1026
        #[allow(clippy::should_implement_trait)] // fallible iterator
    1027
        pub fn next(&mut self) -> Result<Option<Statement<'conn>>> {
  • rusqlite-ic 0.28.1/src/row.rs
    34
        /// return types that implement `Iterator`.
    35
        #[allow(clippy::should_implement_trait)] // cannot implement Iterator
    36
        #[inline]
  • rusqlite-le 0.24.2/src/lib.rs
    900
        /// Returns `Ok(None)` when batch is completed.
    901
        #[allow(clippy::should_implement_trait)] // fallible iterator
    902
        pub fn next(&mut self) -> Result<Option<Statement<'conn>>> {
  • rusqlite-le 0.24.2/src/row.rs
    33
        /// return types that implement `Iterator`.
    34
        #[allow(clippy::should_implement_trait)] // cannot implement Iterator
    35
        #[inline]
  • rustacuda_core 0.1.2/src/memory/pointer.rs
    277
        /// ```
    278
        #[allow(clippy::should_implement_trait)]
    279
        pub unsafe fn add(self, count: usize) -> Self
    318
        /// }
    319
        #[allow(clippy::should_implement_trait)]
    320
        pub unsafe fn sub(self, count: usize) -> Self
    609
        /// ```
    610
        #[allow(clippy::should_implement_trait)]
    611
        pub unsafe fn add(self, count: usize) -> Self
    650
        /// }
    651
        #[allow(clippy::should_implement_trait)]
    652
        pub unsafe fn sub(self, count: usize) -> Self
  • rustube 0.6.0/src/id.rs
    90
    #[allow(clippy::should_implement_trait)]
    91
    impl<'a> Id<'a> {
  • rvs 0.5.0/src/model/variable.rs
    25
        #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    26
        pub fn next(&mut self) -> u32 {
  • saltyrtc-client 0.9.0/src/protocol/nonce.rs
    115
        /// that it isn't reused improperly.
    116
        #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    117
        pub(crate) unsafe fn clone(&self) -> Nonce {
  • sapio-miniscript 8.0.1-alpha.0/src/expression.rs
    177
        /// Parses a tree from a string
    178
        #[allow(clippy::should_implement_trait)] // Cannot use std::str::FromStr because of lifetimes.
    179
        pub fn from_str(s: &'a str) -> Result<Tree<'a>, Error> {
  • savory-html 0.5.1/src/css/box_shadow.rs
    173
        #[allow(clippy::should_implement_trait)]
    174
        pub fn add(mut self, get_val: impl FnOnce(ShadowValue) -> ShadowValue) -> Self {
  • savory-html 0.5.1/src/css/text.rs
    200
        #[allow(clippy::should_implement_trait)]
    201
        pub fn add(mut self, get_val: impl FnOnce(Shadow) -> Shadow) -> Self {
  • savory-html 0.5.1/src/css/transition.rs
    152
        #[allow(clippy::should_implement_trait)]
    153
        pub fn add(
  • savory-style 0.6.0/src/box_shadow.rs
    176
        #[allow(clippy::should_implement_trait)]
    177
        pub fn add(mut self, get_val: impl FnOnce(ShadowValue) -> ShadowValue) -> Self {
  • savory-style 0.6.0/src/text.rs
    204
        #[allow(clippy::should_implement_trait)]
    205
        pub fn add(mut self, get_val: impl FnOnce(Shadow) -> Shadow) -> Self {
  • savory-style 0.6.0/src/transition.rs
    155
        #[allow(clippy::should_implement_trait)]
    156
        pub fn add(
  • scanner-rust 2.0.16/src/scanner.rs
    642
        /// ```
    643
        #[allow(clippy::should_implement_trait)]
    644
        pub fn next(&mut self) -> Result<Option<String>, ScannerError> {
  • scanner-rust 2.0.16/src/scanner_ascii.rs
    453
        /// ```
    454
        #[allow(clippy::should_implement_trait)]
    455
        pub fn next(&mut self) -> Result<Option<String>, ScannerError> {
  • scanner-rust 2.0.16/src/scanner_str.rs
    226
        /// ```
    227
        #[allow(clippy::should_implement_trait)]
    228
        pub fn next(&mut self) -> Result<Option<&'a str>, ScannerError> {
  • scanner-rust 2.0.16/src/scanner_u8_slice.rs
    257
        /// ```
    258
        #[allow(clippy::should_implement_trait)]
    259
        pub fn next(&mut self) -> Result<Option<&'a [u8]>, ScannerError> {
  • scanner-rust 2.0.16/src/scanner_u8_slice_ascii.rs
    179
        /// ```
    180
        #[allow(clippy::should_implement_trait)]
    181
        pub fn next(&mut self) -> Result<Option<&'a [u8]>, ScannerError> {
  • scylla-proxy 0.0.1/src/actions.rs
    117
        /// A convenience function for creating [Condition::Not] variant.
    118
        #[allow(clippy::should_implement_trait)]
    119
        pub fn not(c: Self) -> Self {
  • sea-orm 0.10.7/src/query/insert.rs
    111
        /// Add a Model to Self
    112
        #[allow(clippy::should_implement_trait)]
    113
        pub fn add<M>(mut self, m: M) -> Self
  • sea-query 0.28.3/src/expr.rs
    869
        /// ```
    870
        #[allow(clippy::should_implement_trait)]
    871
        pub fn add<V>(self, v: V) -> SimpleExpr
    903
        /// ```
    904
        #[allow(clippy::should_implement_trait)]
    905
        pub fn sub<V>(self, v: V) -> SimpleExpr
    937
        /// ```
    938
        #[allow(clippy::should_implement_trait)]
    939
        pub fn mul<V>(self, v: V) -> SimpleExpr
    971
        /// ```
    972
        #[allow(clippy::should_implement_trait)]
    973
        pub fn div<V>(self, v: V) -> SimpleExpr
    1005
        /// ```
    1006
        #[allow(clippy::should_implement_trait)]
    1007
        pub fn modulo<V>(self, v: V) -> SimpleExpr
  • sea-query 0.28.3/src/query/condition.rs
    67
        /// ```
    68
        #[allow(clippy::should_implement_trait)]
    69
        pub fn add<C>(mut self, condition: C) -> Self
    107
        /// ```
    108
        #[allow(clippy::should_implement_trait)]
    109
        pub fn add_option<C>(self, other: Option<C>) -> Self
    227
        /// ```
    228
        #[allow(clippy::should_implement_trait)]
    229
        pub fn not(mut self) -> Self {
  • sea-schema 0.11.0/src/parser.rs
    32
        #[allow(clippy::should_implement_trait)]
    33
        pub fn next(&mut self) -> Option<&Token> {
  • sea-schema 0.11.0/src/postgres/def/types.rs
    149
        // TODO: Support more types
    150
        #[allow(clippy::should_implement_trait)]
    151
        pub fn from_str(column_type: &str, udt_name: Option<&str>, is_enum: bool) -> Type {
  • seaslug 0.0.0/src/ebr/atomic.rs
    752
        #[allow(clippy::trivially_copy_pass_by_ref)]
    753
        #[allow(clippy::should_implement_trait)]
    754
        pub(crate) unsafe fn deref(&self) -> &'g T {
  • sequoia-openpgp 1.13.0/src/cert/parser/mod.rs
    613
    #[allow(clippy::should_implement_trait)]
    614
    impl<'a> CertParser<'a> {
  • sequoia-openpgp 1.13.0/src/parse/packet_pile_parser.rs
    248
    #[allow(clippy::should_implement_trait)]
    249
    impl<'a> PacketPileParser<'a> {
  • serde_bytes 0.11.8/src/bytebuf.rs
    83
        #[doc(hidden)]
    84
        #[allow(clippy::should_implement_trait)]
    85
        pub fn into_iter(self) -> <Vec<u8> as IntoIterator>::IntoIter {
  • serde_cbor 0.11.2/src/de.rs
    230
        /// Turn a CBOR deserializer into an iterator over values of type T.
    231
        #[allow(clippy::should_implement_trait)] // Trait doesn't allow unconstrained T.
    232
        pub fn into_iter<T>(self) -> StreamDeserializer<'de, R, T>
  • serde_cbor_2 0.12.0-dev/src/de.rs
    230
        /// Turn a CBOR deserializer into an iterator over values of type T.
    231
        #[allow(clippy::should_implement_trait)] // Trait doesn't allow unconstrained T.
    232
        pub fn into_iter<T>(self) -> StreamDeserializer<'de, R, T>
  • serde-java-properties 0.1.0/src/de/mod.rs
    47
        /// Create a deserializer from a [`str`] slice
    48
        #[allow(clippy::should_implement_trait)]
    49
        pub fn from_str(s: &'a str) -> Self {
  • serde-smile 0.1.4/src/de/mod.rs
    158
        /// Consumes the deserializer, returning an iterator over values of type `T`.
    159
        #[allow(clippy::should_implement_trait)]
    160
        pub fn into_iter<T>(self) -> StreamDeserializer<'de, R, T>
  • serde-tcod-config-parser 0.1.1/src/de/mod.rs
    147
        /// Creates a libtcod config file deserializer from a `&str`.
    148
        #[allow(clippy::should_implement_trait)]
    149
        pub fn from_str<T: de::Deserialize<'de>>(s: &'de str) -> Result<T> {
  • serde_zzz 0.0.1/src/de.rs
    21
        // deserializer can make one with `serde_zzz::Deserializer::from_str(...)`.
    22
        #[allow(clippy::should_implement_trait)]
    23
        pub fn from_str(input: &'de str) -> Self {
  • shine-ecs 0.2.0/src/entities/join.rs
    16
    {
    17
        #[allow(clippy::should_implement_trait)]
    18
        pub fn next(&mut self) -> Option<(Entity, <S as IndexExcl<usize>>::Item)> {
  • shine-graph 0.2.0/src/join.rs
    25
        #[allow(clippy::should_implement_trait)]
    26
        pub fn next(&mut self) -> Option<(usize, <S as IndexExcl<usize>>::Item)> {
  • shipyard 0.6.2/src/view.rs
    1005
        /// Duplicates the [`UniqueView`].
    1006
        #[allow(clippy::should_implement_trait)]
    1007
        #[inline]
  • sieve-rs 0.2.1/src/runtime/tests/mime.rs
    53
        #[allow(clippy::should_implement_trait)]
    54
        pub fn next(&mut self) -> Option<(usize, &MessagePart<'x>)> {
  • skellige 0.1.7/src/git.rs
    45
        /// ```
    46
        #[allow(clippy::should_implement_trait)]
    47
        pub fn add(mut self, repo: Repo<'a>) -> Self {
    93
        /// ```
    94
        #[allow(clippy::should_implement_trait)]
    95
        pub fn clone(&self) -> Result<()> {
  • skia-safe 0.58.0/src/interop/string.rs
    40
    impl String {
    41
        #[allow(clippy::should_implement_trait)]
    42
        pub fn from_str(str: impl AsRef<str>) -> String {
  • skim 0.10.2/src/field.rs
    16
    impl FieldRange {
    17
        #[allow(clippy::should_implement_trait)]
    18
        pub fn from_str(range: &str) -> Option<FieldRange> {
  • skiplist 0.4.0/src/ordered_skiplist.rs
    582
        /// ```
    583
        #[allow(clippy::should_implement_trait)]
    584
        pub fn into_iter(mut self) -> IntoIter<T> {
  • skiplist 0.4.0/src/skiplist.rs
    438
        /// ```
    439
        #[allow(clippy::should_implement_trait)]
    440
        pub fn into_iter(mut self) -> IntoIter<T> {
  • skiplist 0.4.0/src/skipmap.rs
    466
        /// ```
    467
        #[allow(clippy::should_implement_trait)]
    468
        pub fn into_iter(mut self) -> IntoIter<(K, V)> {
  • sml-rs 0.2.1/src/transport.rs
    646
        /// Returns the next message / error.
    647
        #[allow(clippy::should_implement_trait)]
    648
        pub fn next(&mut self) -> Option<Result<&[u8], DecodeErr>> {
  • snarkvm-dpc 0.8.0/src/virtual_machine/amount.rs
    85
        /// Add the values of two `AleoAmount`s
    86
        #[allow(clippy::should_implement_trait)]
    87
        pub fn add(self, b: Self) -> Self {
    91
        /// Subtract the value of two `AleoAmounts`
    92
        #[allow(clippy::should_implement_trait)]
    93
        pub fn sub(self, b: AleoAmount) -> Self {
  • snarkvm-objects 0.4.0/src/amount.rs
    88
        /// Add the values of two `AleoAmount`s
    89
        #[allow(clippy::should_implement_trait)]
    90
        pub fn add(self, b: Self) -> Self {
    94
        /// Subtract the value of two `AleoAmounts`
    95
        #[allow(clippy::should_implement_trait)]
    96
        pub fn sub(self, b: AleoAmount) -> Self {
  • sodg 0.0.22/src/script.rs
    71
        /// ```
    72
        #[allow(clippy::should_implement_trait)]
    73
        pub fn from_str(s: &str) -> Script {
  • solana-genesis 1.14.13/src/address_generator.rs
    23
        #[allow(clippy::should_implement_trait)]
    24
        pub fn next(&mut self) -> Pubkey {
  • sonnerie 0.8.1/src/records.rs
    281
    {
    282
    	#[allow(clippy::should_implement_trait)]
    283
    	pub fn add<Next: ToRecord>(self, value: Next) -> BuildingRecord<Next, Self> {
  • source 0.2.1/src/lib.rs
    8
    impl<A: 'static> Source<A> {
    9
        #[allow(clippy::should_implement_trait)]
    10
        pub fn next(&mut self) -> Option<A> {
  • sourceview5 0.5.0/src/region_iter.rs
    30
        #[allow(clippy::should_implement_trait)]
    31
        #[doc(alias = "gtk_source_region_iter_next")]
  • sp-im 0.3.0/src/vector/focus.rs
    530
      /// Panics if the index is out of bounds.
    531
      #[allow(clippy::should_implement_trait)] // would if I could
    532
      pub fn index_mut(&mut self, index: usize) -> &mut A {
  • sp-ropey 0.2.0/src/rope.rs
    127
      #[inline]
    128
      #[allow(clippy::should_implement_trait)]
    129
      pub fn from_str(text: &str) -> Self { RopeBuilder::new().build_at_once(text) }
  • spreadsheet-ods 0.15.0/src/defaultstyles.rs
    18
        /// Default format.
    19
        #[allow(clippy::should_implement_trait)]
    20
        pub fn default() -> ValueFormatRef {
  • sstb 0.3.0-alpha/src/utils/sorted_bytes_iterator.rs
    109
        #[allow(clippy::should_implement_trait)]
    110
        pub fn next(&mut self) -> Option<&[u8]> {
  • staticvec 0.11.9/src/string/mod.rs
    111
      /// ```
    112
      #[allow(clippy::should_implement_trait)]
    113
      #[inline(always)]
  • strict-yaml-rust 0.1.2/src/strict_yaml.rs
    222
    #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    223
    impl StrictYaml {
  • string 0.3.0/src/lib.rs
    94
        /// ```
    95
        #[allow(clippy::should_implement_trait)]
    96
        pub fn from_str<'a>(src: &'a str) -> String<T>
  • stuart_core 0.2.3/src/parse/parser.rs
    45
        /// Gets the next character from the parser, returning an error if the end of the input is reached.
    46
        #[allow(clippy::should_implement_trait)]
    47
        pub fn next(&mut self) -> Result<char, TracebackError<ParseError>> {
  • summavy 0.25.3/src/termdict/fst_termdict/streamer.rs
    138
        /// Return the next `(key, value)` pair.
    139
        #[allow(clippy::should_implement_trait)]
    140
        pub fn next(&mut self) -> Option<(&[u8], &TermInfo)> {
  • summavy-sstable 0.1.0/src/streamer.rs
    197
        /// Return the next `(key, value)` pair.
    198
        #[allow(clippy::should_implement_trait)]
    199
        pub fn next(&mut self) -> Option<(&[u8], &TSSTable::Value)> {
  • svgrtypes 0.27.0/src/funciri.rs
    18
        /// [Name]: https://www.w3.org/TR/xml/#NT-Name
    19
        #[allow(clippy::should_implement_trait)]
    20
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
    47
        /// [Name]: https://www.w3.org/TR/xml/#NT-Name
    48
        #[allow(clippy::should_implement_trait)]
    49
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
  • svgrtypes 0.27.0/src/paint.rs
    64
        /// an owned value as a return type.
    65
        #[allow(clippy::should_implement_trait)]
    66
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
  • svgtypes 0.9.0/src/funciri.rs
    18
        /// [Name]: https://www.w3.org/TR/xml/#NT-Name
    19
        #[allow(clippy::should_implement_trait)]
    20
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
    47
        /// [Name]: https://www.w3.org/TR/xml/#NT-Name
    48
        #[allow(clippy::should_implement_trait)]
    49
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
  • svgtypes 0.9.0/src/paint.rs
    64
        /// an owned value as a return type.
    65
        #[allow(clippy::should_implement_trait)]
    66
        pub fn from_str(text: &'a str) -> Result<Self, Error> {
  • symbolic-debuginfo 11.0.0/src/macho/compact.rs
    1044
        /// Gets the next entry in the iterator.
    1045
        #[allow(clippy::should_implement_trait)]
    1046
        pub fn next(&mut self) -> Result<Option<CompactUnwindInfoEntry>> {
  • systemd 0.10.0/src/bus/mod.rs
    1915
        // FIXME: consider renaming
    1916
        #[allow(clippy::should_implement_trait)]
    1917
        pub fn next<V: types::FromSdBusMessage<'a>>(&'a mut self) -> crate::Result<Option<V>> {
  • systemd 0.10.0/src/journal.rs
    799
        // TODO: consider renaming
    800
        #[allow(clippy::should_implement_trait)]
    801
        pub fn next(&mut self) -> Result<u64> {
  • tagged-box 0.1.1/src/tagged_box.rs
    128
        #[inline]
    129
        #[allow(clippy::should_implement_trait)]
    130
        pub unsafe fn as_ref<U>(&self) -> &U {
  • tagged-box 0.1.1/src/tagged_pointer.rs
    83
        #[inline]
    84
        #[allow(clippy::should_implement_trait)]
    85
        pub unsafe fn as_ref<T>(&self) -> &T {
  • tantivy 0.19.1/src/termdict/fst_termdict/streamer.rs
    138
        /// Return the next `(key, value)` pair.
    139
        #[allow(clippy::should_implement_trait)]
    140
        pub fn next(&mut self) -> Option<(&[u8], &TermInfo)> {
  • tantivy 0.19.1/src/termdict/sstable_termdict/streamer.rs
    181
        /// Return the next `(key, value)` pair.
    182
        #[allow(clippy::should_implement_trait)]
    183
        pub fn next(&mut self) -> Option<(&[u8], &TermInfo)> {
  • tarantool 0.6.4/src/sequence.rs
    25
        #[allow(clippy::should_implement_trait)]
    26
        /// Generate the next value and return it.
  • tarantool 0.6.4/src/tuple.rs
    958
        /// - `box_tuple_position(it) == box_tuple_field_count(Tuple)` if returned value is `None`.
    959
        #[allow(clippy::should_implement_trait)]
    960
        pub fn next<'t, T>(&'t mut self) -> Result<Option<T>>
  • tch 0.10.1/src/nn/sequential.rs
    40
        /// Appends a layer after all the current layers.
    41
        #[allow(clippy::should_implement_trait)]
    42
        pub fn add<M: Module + 'static>(mut self, layer: M) -> Self {
    109
        /// Appends a layer after all the current layers.
    110
        #[allow(clippy::should_implement_trait)]
    111
        pub fn add<M: ModuleT + 'static>(mut self, layer: M) -> Self {
  • tetsy-libp2p-core 0.27.2/src/connection/pool.rs
    844
        /// Obtains the next connection, if any.
    845
        #[allow(clippy::should_implement_trait)]
    846
        pub fn next(&mut self) -> Option<EstablishedConnection<'_, TInEvent>>
  • tetsy-libp2p-core 0.27.2/src/network/peer.rs
    664
        /// Obtains the next dialing connection, if any.
    665
        #[allow(clippy::should_implement_trait)]
    666
        pub fn next(&mut self) -> Option<DialingAttempt<'_, TInEvent>> {
  • tfmicro 0.1.0/src/operators.rs
    566
        }
    567
        #[allow(clippy::should_implement_trait)]
    568
        /// Use the NEG operator in this op resolver
  • tfrecord 0.14.0/src/protobuf_ext/example_ext.rs
    13
        #[allow(clippy::should_implement_trait)]
    14
        pub fn into_iter(self) -> impl Iterator<Item = (String, Feature)> {
  • thin-dst 1.1.0/src/lib.rs
    584
        clippy::missing_safety_doc,
    585
        clippy::should_implement_trait
    586
    )]
  • tifloats 0.2.0/src/correct/mantissa.rs
    193
        #[allow(clippy::should_implement_trait)]
    194
        pub fn shr(self, distance: u8) -> Self {
    209
        #[allow(clippy::should_implement_trait)]
    210
        pub fn shl(self, distance: u8) -> Self {
  • toad-common 0.11.3/src/cursor.rs
    72
      /// Runs in O(1) time.
    73
      #[allow(clippy::should_implement_trait)]
    74
      pub fn next(&mut self) -> Option<u8> {
  • token-iter 0.1.0/src/lib.rs
    225
        /// Returns the next character and adds it to the lexeme.
    226
        #[allow(clippy::should_implement_trait)]
    227
        pub fn next(&mut self) -> Option<char> {
  • tokio-imap 0.5.0/src/client.rs
    96
        #[allow(clippy::should_implement_trait)]
    97
        pub async fn next(&mut self) -> Option<Result<ResponseData, io::Error>> {
  • tokio-timer 0.3.0-alpha.6/src/interval.rs
    94
        /// ```
    95
        #[allow(clippy::should_implement_trait)] // TODO: rename (tokio-rs/tokio#1261)
    96
        pub async fn next(&mut self) -> Option<Instant> {
  • tonic 0.8.3/src/metadata/value.rs
    459
        /// ```
    460
        #[allow(clippy::should_implement_trait)]
    461
        #[deprecated = "Use TryFrom or FromStr instead"]
  • tonic-arcanyx-fork 0.8.1-alpha.0/src/metadata/value.rs
    459
        /// ```
    460
        #[allow(clippy::should_implement_trait)]
    461
        #[deprecated = "Use TryFrom or FromStr instead"]
  • touche 0.0.4/src/body.rs
    98
        /// responses.
    99
        #[allow(clippy::should_implement_trait)]
    100
        pub fn from_iter<T, I>(chunks: I) -> Self
    257
        /// Creates a [`BodyReader`] from an [`Iterator`]
    258
        #[allow(clippy::should_implement_trait)]
    259
        pub fn from_iter(iter: impl IntoIterator<Item = Vec<u8>> + 'static) -> Self {
  • trust-dns-proto 0.22.0/src/rr/dnssec/mod.rs
    59
    #[cfg_attr(docsrs, doc(cfg(not(any(feature = "openssl", feature = "ring")))))]
    60
    #[allow(clippy::should_implement_trait)]
    61
    impl Digest {
  • tsproto-types 0.1.0/src/crypto.rs
    266
    	// For the bookkeeping
    267
    	#[allow(clippy::should_implement_trait)]
    268
    	pub fn as_ref(&self) -> &Self { self }
  • ttf-parser 0.18.1/src/ggg/lookup.rs
    93
        /// We cannot use `IntoIterator` here, because we have to use user-provided base type.
    94
        #[allow(clippy::should_implement_trait)]
    95
        pub fn into_iter<T: LookupSubtable<'a>>(self) -> LookupSubtablesIter<'a, T> {
  • tuirealm 1.8.0/src/core/subscription.rs
    172
        /// Shortcut for `SubClause::Not` without specifying `Box::new(...)`
    173
        #[allow(clippy::should_implement_trait)]
    174
        pub fn not(clause: Self) -> Self {
  • turtle-syntax 2.2.0-beta/src/lexing.rs
    870
    	#[allow(clippy::type_complexity, clippy::should_implement_trait)]
    871
    	pub fn next(&mut self) -> Result<Loc<Option<Token>, F>, Loc<Error<E>, F>> {
  • twitch_types 0.4.0/src/time.rs
    190
    impl TimestampRef {
    191
        #[allow(unsafe_code, clippy::should_implement_trait)]
    192
        #[inline]
  • twitter-stream-message 0.3.0/src/message/mod.rs
    264
        /// assert_eq!(parsed, expected);
    265
        #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    266
        pub fn from_str(json: &'a str) -> ::Result<Self> {
  • typed-clickhouse 0.2.0/src/query.rs
    103
    impl<T> RowCursor<T> {
    104
        #[allow(clippy::should_implement_trait)]
    105
        pub async fn next<'a, 'b: 'a>(&'a mut self) -> Result<Option<T>>
  • typesafe_repository 0.2.0/src/transactional/mod.rs
    1030
    {
    1031
        #[allow(clippy::should_implement_trait)]
    1032
        pub fn add(self, v: V) -> RepositoryWrapper<R::Add, HCons<H, T>, V, R>
  • uapi 0.2.10/src/dir/mod.rs
    30
    #[man(readdir(3))]
    31
    #[allow(clippy::should_implement_trait)] // https://github.com/rust-lang/rust-clippy/issues/5004
    32
    pub fn readdir<'a>(dir: &'a mut c::DIR) -> Option<Result<Dirent<'a>>> {
  • uapi 0.2.10/src/ustr/bstr.rs
    38
        /// Shortcut for `Bstr::from_bytes(s.as_bytes())`
    39
        #[allow(clippy::should_implement_trait)] // https://github.com/rust-lang/rust-clippy/issues/5612
    40
        pub fn from_str(s: &str) -> &Self {
  • uapi 0.2.10/src/ustr/ustr.rs
    88
        /// Shortcut for `Ustr::from_bytes(s.as_bytes())`
    89
        #[allow(clippy::should_implement_trait)] // https://github.com/rust-lang/rust-clippy/issues/5612
    90
        pub fn from_str(s: &str) -> Option<&Self> {
  • ubench 0.0.0-alpha0/src/runner/mod.rs
    42
        #[allow(clippy::should_implement_trait)]
    43
        pub fn add<X>(self, top_level_benchmark: X) -> BenchmarkRunner<(X, L)>
  • ublox 0.4.2/src/parser.rs
    480
        #[allow(clippy::should_implement_trait)]
    481
        /// Analog of `core::iter::Iterator::next`, should be switched to
  • uni_tmp_jni 0.18.0/src/wrapper/signature.rs
    86
        // case.
    87
        #[allow(clippy::should_implement_trait)]
    88
        pub fn from_str<S: AsRef<str>>(s: S) -> Result<TypeSignature> {
  • unity-yaml-rust 0.1.1/src/yaml.rs
    412
    #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    413
    impl Yaml {
  • ur 0.3.0/src/xoshiro.rs
    26
    impl Xoshiro256 {
    27
        #[allow(clippy::should_implement_trait)]
    28
        pub fn next(&mut self) -> u64 {
  • user-agent-parser 0.3.4/src/lib.rs
    231
        /// Read the list of regular expressions (YAML data) from a string to create a `UserAgentParser` instance.
    232
        #[allow(clippy::should_implement_trait)]
    233
        pub fn from_str<S: AsRef<str>>(yaml: S) -> Result<UserAgentParser, UserAgentParserError> {
  • utfx 0.1.0/src/ucstring.rs
    437
        /// ```
    438
        #[allow(clippy::should_implement_trait)]
    439
        pub fn from_str(s: impl AsRef<str>) -> Result<Self, NulError<u16>> {
    887
        /// ```
    888
        #[allow(clippy::should_implement_trait)]
    889
        pub fn from_str(s: impl AsRef<str>) -> Result<Self, NulError<u32>> {
  • utfx 0.1.0/src/ustring.rs
    315
        /// ```
    316
        #[allow(clippy::should_implement_trait)]
    317
        pub fn from_str<S: AsRef<str> + ?Sized>(s: &S) -> Self {
    430
        /// ```
    431
        #[allow(clippy::should_implement_trait)]
    432
        pub fn from_str<S: AsRef<str> + ?Sized>(s: &S) -> Self {
  • vcard 0.4.11/src/values/parameter_value.rs
    21
    impl ParameterValue {
    22
        #[allow(clippy::should_implement_trait)]
    23
        pub fn from_str(text: &str) -> Result<ParameterValue, ParameterValueError> {
  • vec_mut_scan 0.4.0/src/lib.rs
    112
        /// This returns a reference wrapper that enables item removal (see [`VecMutScanItem`]).
    113
        #[allow(clippy::should_implement_trait)] // can't be an iterator due to lifetimes
    114
        pub fn next<'s>(&'s mut self) -> Option<VecMutScanItem<'s, 'a, T>> {
    372
        /// This returns a reference wrapper that enables item removal (see [`VecGrowScanItem`]).
    373
        #[allow(clippy::should_implement_trait)] // can't be an iterator due to lifetimes
    374
        pub fn next<'s>(&'s mut self) -> Option<VecGrowScanItem<'s, 'a, T>> {
  • vecrem 0.1.0/src/lib.rs
    223
        #[inline]
    224
        #[allow(clippy::should_implement_trait)]
    225
        pub fn next(&mut self) -> Option<Entry<'_, 'a, T>> {
  • volo-grpc 0.3.0/src/metadata/value.rs
    319
        /// ```
    320
        #[allow(clippy::should_implement_trait)]
    321
        #[inline]
  • wasmer 3.2.0-alpha.1/src/js/function_env.rs
    162
        #[allow(clippy::should_implement_trait)]
    163
        /// Returns a reference to the underlying value.
    168
        #[allow(clippy::should_implement_trait)]
    169
        /// Returns a mutable reference to the underlying value.
  • wasmer-vm 3.2.0-alpha.1/src/extern_ref.rs
    23
        #[allow(clippy::should_implement_trait)]
    24
        /// Returns a reference to the underlying value.
  • wasmer-vm 3.2.0-alpha.1/src/function_env.rs
    20
        #[allow(clippy::should_implement_trait)]
    21
        /// Returns a reference to the underlying value.
    26
        #[allow(clippy::should_implement_trait)]
    27
        /// Returns a mutable reference to the underlying value.
  • watchman_client 0.8.0/src/lib.rs
    757
        /// from the server.
    758
        #[allow(clippy::should_implement_trait)]
    759
        pub async fn next(&mut self) -> Result<SubscriptionData<F>, Error> {
  • web-extensions-sys 0.4.0/src/theme.rs
    20
    impl Color {
    21
        #[allow(clippy::should_implement_trait)]
    22
        pub fn from_str(color: &str) -> Self {
  • webkit2gtk 0.19.2/src/auto/web_context.rs
    97
      #[doc(alias = "get_default")]
    98
      #[allow(clippy::should_implement_trait)]
    99
      pub fn default() -> Option<WebContext> {
  • whois-rust 1.5.1/src/who_is_lookup_options.rs
    34
        #[allow(clippy::should_implement_trait)]
    35
        #[inline]
  • widestring 1.0.2/src/ucstring.rs
    1028
        /// ```
    1029
        #[allow(clippy::should_implement_trait)]
    1030
        #[inline]
    1344
        /// ```
    1345
        #[allow(clippy::should_implement_trait)]
    1346
        #[inline]
  • widestring 1.0.2/src/ustring.rs
    1182
        /// ```
    1183
        #[allow(clippy::should_implement_trait)]
    1184
        #[inline]
    1388
        /// ```
    1389
        #[allow(clippy::should_implement_trait)]
    1390
        #[inline]
  • wincompatlib 0.2.0/src/wine/mod.rs
    24
    impl WineArch {
    25
        #[allow(clippy::should_implement_trait)]
    26
        pub fn from_str(arch: &str) -> Option<Self> {
  • windy 0.2.0/src/string.rs
    172
        /// ```
    173
        #[allow(clippy::should_implement_trait)]
    174
        pub fn from_str(x: &str) -> ConvertResult<Self> {
    410
        /// ```
    411
        #[allow(clippy::should_implement_trait)]
    412
        pub fn from_str(x: &str) -> ConvertResult<Self> {
  • wlambda 0.8.1/src/selector.rs
    1728
    #[allow(clippy::should_implement_trait)]
    1729
    impl RegexMode {
  • wordle_rs 0.2.0/src/strategy/mod.rs
    75
        /// ```
    76
        #[allow(clippy::should_implement_trait)]
    77
        pub fn from_str(word: &str) -> Result<Self> {
  • worker-plus 0.0.15/src/request.rs
    236
        #[allow(clippy::should_implement_trait)]
    237
        pub fn clone(&self) -> Result<Self> {
  • wtf8-rs 1.1.0/src/wtf8buf/mod.rs
    105
        #[inline]
    106
        #[allow(clippy::should_implement_trait)]
    107
        pub fn from_str(str: &str) -> Wtf8Buf {
  • x86_64_structs 0.11.6/src/structures/idt.rs
    677
        /// interrupt.
    678
        #[allow(clippy::should_implement_trait)]
    679
        #[inline]
  • xml-string 0.0.2/src/names/eqname.rs
    108
        // `FromStr` can be implemented only for types with static lifetime.
    109
        #[allow(clippy::should_implement_trait)]
    110
        pub fn from_str(s: &str) -> Result<&Self, NameError> {
    613
        // `FromStr` can be implemented only for types with static lifetime.
    614
        #[allow(clippy::should_implement_trait)]
    615
        #[inline]
  • xml-string 0.0.2/src/names/name.rs
    39
        // `FromStr` can be implemented only for types with static lifetime.
    40
        #[allow(clippy::should_implement_trait)]
    41
        #[inline]
  • xml-string 0.0.2/src/names/ncname.rs
    41
        // `FromStr` can be implemented only for types with static lifetime.
    42
        #[allow(clippy::should_implement_trait)]
    43
        #[inline]
  • xml-string 0.0.2/src/names/nmtoken.rs
    39
        // `FromStr` can be implemented only for types with static lifetime.
    40
        #[allow(clippy::should_implement_trait)]
    41
        #[inline]
  • xml-string 0.0.2/src/names/qname.rs
    45
        // `FromStr` can be implemented only for types with static lifetime.
    46
        #[allow(clippy::should_implement_trait)]
    47
        pub fn from_str(s: &str) -> Result<&Self, NameError> {
    480
        // `FromStr` can be implemented only for types with static lifetime.
    481
        #[allow(clippy::should_implement_trait)]
    482
        #[inline]
  • xml-string 0.0.2/src/names/uri_qualified_name.rs
    85
        // `FromStr` can be implemented only for types with static lifetime.
    86
        #[allow(clippy::should_implement_trait)]
    87
        pub fn from_str(s: &str) -> Result<&Self, NameError> {
    440
        // `FromStr` can be implemented only for types with static lifetime.
    441
        #[allow(clippy::should_implement_trait)]
    442
        #[inline]
  • yaml-rust 0.4.5/src/yaml.rs
    285
    #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    286
    impl Yaml {
  • yaml-rust-davvid 0.5.1/src/yaml.rs
    276
    #[cfg_attr(feature = "cargo-clippy", allow(should_implement_trait))]
    277
    impl Yaml {
  • alt_serde_json 1.0.61/src/lib.rs
    323
        // Deserializer::from_str, into_iter
    324
        clippy::should_implement_trait,
    325
        // integer and float ser/de requires these sorts of casts
  • audio 0.2.0-alpha.4/src/lib.rs
    133
    #![deny(missing_docs, rustdoc::broken_intra_doc_links)]
    134
    #![allow(clippy::should_implement_trait)]
  • audio-core 0.2.0-alpha.4/src/lib.rs
    15
    #![deny(missing_docs, rustdoc::broken_intra_doc_links)]
    16
    #![allow(clippy::should_implement_trait)]
  • aws-sdk-accessanalyzer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-account 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-acm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-acmpca 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-alexaforbusiness 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-amp 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-amplify 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-amplifybackend 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-amplifyuibuilder 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-apigateway 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-apigatewaymanagement 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-apigatewayv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appconfig 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appconfigdata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appflow 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appintegrations 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-applicationautoscaling 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-applicationcostprofiler 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-applicationdiscovery 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-applicationinsights 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appmesh 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-apprunner 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appstream 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-appsync 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-arczonalshift 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-athena 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-auditmanager 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-autoscaling 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-autoscalingplans 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-backup 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-backupgateway 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-backupstorage 0.7.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-batch 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-billingconductor 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-braket 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-budgets 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chimesdkidentity 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chimesdkmediapipelines 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chimesdkmeetings 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chimesdkmessaging 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-chimesdkvoice 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cleanrooms 0.1.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloud9 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudcontrol 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-clouddirectory 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudformation 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudfront 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudhsm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudhsmv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudsearch 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudsearchdomain 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudtrail 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudwatch 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudwatchevents 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cloudwatchlogs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codeartifact 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codebuild 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codecatalyst 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codecommit 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codedeploy 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codeguruprofiler 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codegurureviewer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codepipeline 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codestar 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codestarconnections 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-codestarnotifications 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cognitoidentity 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cognitoidentityprovider 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-cognitosync 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-comprehend 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-comprehendmedical 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-computeoptimizer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-config 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-connect 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-connectcampaigns 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-connectcases 0.5.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-connectcontactlens 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-connectparticipant 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-controltower 0.5.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-costandusagereport 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-costexplorer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-customerprofiles 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-databasemigration 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-databrew 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-dataexchange 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-datapipeline 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-datasync 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-dax 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-detective 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-devicefarm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-devopsguru 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-directconnect 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-directory 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-dlm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-docdb 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-docdbelastic 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-drs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-dynamodb 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-dynamodbstreams 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ebs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ec2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ec2instanceconnect 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ecr 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ecrpublic 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ecs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-efs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-eks 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticache 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticbeanstalk 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticinference 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticloadbalancing 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticloadbalancingv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elasticsearch 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-elastictranscoder 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-emr 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-emrcontainers 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-emrserverless 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-eventbridge 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-evidently 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-finspace 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-finspacedata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-firehose 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-fis 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-fms 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-forecast 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-forecastquery 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-frauddetector 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-fsx 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-gamelift 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-gamesparks 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-glacier 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-globalaccelerator 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-glue 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-grafana 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-greengrass 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-greengrassv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-groundstation 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-guardduty 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-health 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-healthlake 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-honeycode 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iam 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-identitystore 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-imagebuilder 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-inspector 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-inspector2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iot 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iot1clickdevices 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iot1clickprojects 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotanalytics 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotdataplane 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotdeviceadvisor 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotevents 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ioteventsdata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotfleethub 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotfleetwise 0.5.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotjobsdataplane 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotroborunner 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotsecuretunneling 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotsitewise 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotthingsgraph 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iottwinmaker 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-iotwireless 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ivs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ivschat 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kafka 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kafkaconnect 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kendra 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kendraranking 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-keyspaces 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesis 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisanalytics 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisanalyticsv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisvideo 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisvideoarchivedmedia 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisvideomedia 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisvideosignaling 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kinesisvideowebrtcstorage 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-kms 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lakeformation 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lambda 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lexmodelbuilding 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lexmodelsv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lexruntime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lexruntimev2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-licensemanager 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-licensemanagerlinuxsubscriptions 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-licensemanagerusersubscriptions 0.8.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lightsail 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-location 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lookoutequipment 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lookoutmetrics 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-lookoutvision 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-m2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-machinelearning 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-macie 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-macie2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-managedblockchain 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-marketplacecatalog 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-marketplacecommerceanalytics 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-marketplaceentitlement 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-marketplacemetering 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediaconnect 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediaconvert 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-medialive 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediapackage 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediapackagevod 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediastore 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediastoredata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mediatailor 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-memorydb 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mgn 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-migrationhub 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-migrationhubconfig 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-migrationhuborchestrator 0.5.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-migrationhubrefactorspaces 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-migrationhubstrategy 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mobile 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mq 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mturk 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-mwaa 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-neptune 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-networkfirewall 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-networkmanager 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-nimble 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-oam 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-omics 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-opensearch 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-opensearchserverless 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-opsworks 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-opsworkscm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-organizations 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-outposts 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-panorama 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-personalize 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-personalizeevents 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-personalizeruntime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pi 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pinpoint 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pinpointemail 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pinpointsmsvoice 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pinpointsmsvoicev2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pipes 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-polly 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-pricing 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-privatenetworks 0.7.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-proton 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-qldb 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-qldbsession 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-quicksight 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ram 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rbin 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rds 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rdsdata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-redshift 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-redshiftdata 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-redshiftserverless 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rekognition 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-resiliencehub 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-resourceexplorer2 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-resourcegroups 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-resourcegroupstagging 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-robomaker 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rolesanywhere 0.9.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53domains 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53recoverycluster 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53recoverycontrolconfig 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53recoveryreadiness 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-route53resolver 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-rum 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-s3 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-s3control 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-s3outposts 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemaker 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakera2iruntime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakeredge 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakerfeaturestoreruntime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakergeospatial 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakermetrics 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sagemakerruntime 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-savingsplans 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-scheduler 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-schemas 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-secretsmanager 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-securityhub 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-securitylake 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-serverlessapplicationrepository 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-servicecatalog 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-servicecatalogappregistry 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-servicediscovery 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-servicequotas 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ses 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sesv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sfn 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-shield 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-signer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-simspaceweaver 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sms 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-snowball 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-snowdevicemanagement 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sns 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sqs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssm 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssmcontacts 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssmincidents 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssmsap 0.2.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sso 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssoadmin 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-ssooidc 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-storagegateway 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-sts 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-support 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-supportapp 0.7.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-swf 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-synthetics 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-textract 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-transcribe 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-transcribestreaming 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-transfer 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-translate 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-voiceid 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-waf 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-wafregional 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-wafv2 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-wellarchitected 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-wisdom 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-workdocs 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-worklink 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-workmail 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-workmailmessageflow 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-workspaces 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-workspacesweb 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • aws-sdk-xray 0.24.0/src/lib.rs
    5
    #![allow(clippy::wrong_self_convention)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::blacklisted_name)]
  • bnf 0.4.3/src/production.rs
    1
    #![allow(clippy::should_implement_trait)]
  • bnf 0.4.3/src/term.rs
    1
    #![allow(clippy::should_implement_trait)]
  • build-target 0.4.0/src/lib.rs
    1
    #![allow(clippy::needless_doctest_main, clippy::should_implement_trait)]
  • choir 0.5.0/src/lib.rs
    23
        clippy::len_without_is_empty,
    24
        clippy::should_implement_trait
    25
    )]
  • cretonne-codegen 0.13.2/src/lib.rs
    29
                    new_without_default_derive,
    30
                    should_implement_trait,
    31
                    redundant_field_names,
  • dhall 0.12.0/src/syntax/mod.rs
    2
        clippy::many_single_char_names,
    3
        clippy::should_implement_trait,
    4
        clippy::new_without_default,
  • docktor-api 0.35.2/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • docktor-api-client 0.35.2/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • fitsio-sys 0.5.1/src/lib.rs
    58
        clippy::missing_safety_doc,
    59
        clippy::should_implement_trait,
    60
        clippy::upper_case_acronyms
  • fitsio-sys-bindgen 0.0.6/src/lib.rs
    65
        clippy::too_many_arguments,
    66
        clippy::should_implement_trait,
    67
        clippy::upper_case_acronyms
  • fixed-map 0.8.1/src/option_bucket.rs
    92
    // `clippy::pedantic` exceptions
    93
    #![allow(clippy::should_implement_trait, clippy::must_use_candidate)]
  • flp-tsl 0.1.2/src/lib.rs
    1
    #![allow(clippy::should_implement_trait)]
  • fluvio-dataplane-protocol 0.11.6/src/lib.rs
    1
    #![allow(clippy::len_without_is_empty)]
    2
    #![allow(clippy::should_implement_trait)]
  • fluvio-protocol 0.8.3/src/record/mod.rs
    1
    #![allow(clippy::len_without_is_empty)]
    2
    #![allow(clippy::should_implement_trait)]
  • gimli 0.27.1/src/lib.rs
    36
    // False positives with `fallible_iterator`.
    37
    #![allow(clippy::should_implement_trait)]
    38
    // False positives.
  • gonk-player 0.1.2/src/lib.rs
    1
    #![recursion_limit = "2048"]
    2
    #![allow(clippy::should_implement_trait, clippy::unnecessary_to_owned)]
    3
    use cpal::{
  • GSL 6.0.0/src/lib.rs
    13
    #![allow(clippy::many_single_char_names)]
    14
    #![allow(clippy::should_implement_trait)]
    15
    #![allow(clippy::type_complexity)]
  • hatter 0.1.4/src/lib.rs
    16
    #![deny(unreachable_patterns)]
    17
    #![allow(clippy::should_implement_trait)]
    18
    #![allow(clippy::new_without_default)]
  • hcl-rs 0.12.3/src/lib.rs
    17
        clippy::return_self_not_must_use,
    18
        clippy::should_implement_trait,
    19
        clippy::struct_excessive_bools,
  • headless_chrome 1.0.2/src/lib.rs
    81
    clippy::manual_let_else, // for transport/web_socket_connection.rs:142
    82
    clippy::should_implement_trait, // for browser/mod.rs:106
    83
    )]
  • himpi-sys 0.1.21/src/lib.rs
    11
    #![allow(clippy::redundant_static_lifetimes)]
    12
    #![allow(clippy::should_implement_trait)]
    13
    #![allow(clippy::too_many_arguments)]
  • lapce-xi-rope 0.3.1/src/lib.rs
    22
        clippy::new_without_default,
    23
        clippy::should_implement_trait,
    24
        clippy::wrong_self_convention
  • lexgen_util 0.12.0/src/lib.rs
    1
    #![allow(clippy::should_implement_trait, clippy::type_complexity)]
  • lexopt 0.3.0/src/lib.rs
    78
    #![warn(missing_docs, missing_debug_implementations, elided_lifetimes_in_paths)]
    79
    #![allow(clippy::should_implement_trait)]
  • libslide 0.0.1/src/math/poly.rs
    1
    #![allow(clippy::should_implement_trait)]
  • libstrophe 0.17.0/src/stanza.rs
    112
    	pub fn from_str(s: impl AsRef<str>) -> Self {
    113
    		#![allow(clippy::should_implement_trait)]
    114
    		let s = FFI(s.as_ref()).send();
  • libtcc 0.2.0/src/lib.rs
    1
    #![allow(clippy::type_complexity, clippy::should_implement_trait)]
    2
    #![deny(missing_docs)]
  • libzui 0.1.0/src/lib.rs
    1
    #![warn(clippy::all, clippy::cargo)]
    2
    #![allow(clippy::should_implement_trait)]
  • lindera-fst 0.1.1/src/lib.rs
    8
    #![allow(clippy::new_without_default)]
    9
    #![allow(clippy::should_implement_trait)]
  • llama 0.14.2/src/lib.rs
    1
    #![allow(clippy::should_implement_trait)]
    2
    #![deny(missing_docs)]
  • ming 0.1.0/src/lib.rs
    64
    #![warn(missing_docs)]
    65
    #![allow(clippy::should_implement_trait)]
    66
    #![allow(clippy::map_clone)] // Because of the MSRV (setting MSRV in clippy.toml doesn't help)
  • multisql 0.4.3/src/data/value/methods/binary.rs
    1
    #![allow(clippy::should_implement_trait)] // TODO
  • ncursesw 0.6.4/src/wide/string.rs
    23
    #![allow(clippy::should_implement_trait)]
    24
    #![allow(clippy::from_over_into)]
  • ntex-http 0.1.9/src/value.rs
    2
        clippy::derive_hash_xor_eq,
    3
        clippy::should_implement_trait,
    4
        clippy::no_effect,
  • object 0.30.3/src/lib.rs
    64
    // Occurs due to fallible iteration.
    65
    #![allow(clippy::should_implement_trait)]
    66
    // Unit errors are converted to other types by callers.
  • opencv 0.76.3/docs/hub/alphamat.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/aruco.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/barcode.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/bgsegm.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/bioinspired.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/calib3d.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/ccalib.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/core.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/cudaarithm.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • opencv 0.76.3/docs/hub/cudabgsegm.rs
    4
    	clippy::missing_safety_doc,
    5
    	clippy::should_implement_trait,
    6
    	clippy::too_many_arguments,
  • openstack 0.4.2/src/lib.rs
    151
        clippy::new_ret_no_self,
    152
        clippy::should_implement_trait,
    153
        clippy::wrong_self_convention
  • p384 0.12.0/src/arithmetic/field.rs
    14
    #![allow(
    15
        clippy::should_implement_trait,
    16
        clippy::suspicious_op_assign_impl,
  • p384_rs 0.1.10/src/arithmetic/field.rs
    14
    #![allow(
    15
        clippy::should_implement_trait,
    16
        clippy::suspicious_op_assign_impl,
  • pdf 0.8.0/src/lib.rs
    2
    #![allow(unused_doc_comments)] // /* TODO temporary because of err.rs */
    3
    #![allow(clippy::len_zero, clippy::should_implement_trait, clippy::manual_map, clippy::from_over_into)]
  • pg-extend 0.2.1/src/pg_sys.rs
    19
    #![allow(clippy::new_without_default_derive)]
    20
    #![allow(clippy::should_implement_trait)]
    21
    #![allow(clippy::unreadable_literal)]
  • pin-init 0.2.0/src/lib.rs
    5
    #![allow(clippy::new_without_default)]
    6
    #![allow(clippy::should_implement_trait)]
    7
    #![allow(clippy::needless_lifetimes)]
  • rivet-chat 0.0.7/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-client-api-chat 0.0.1/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-group 0.0.7/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-identity 0.0.14/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-kv 0.0.8/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-matchmaker 0.0.8/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rivet-party 0.0.7/src/lib.rs
    4
    #![allow(clippy::wrong_self_convention)]
    5
    #![allow(clippy::should_implement_trait)]
    6
    #![allow(clippy::blacklisted_name)]
  • rotary 0.29.0-alpha.2/src/lib.rs
    104
    #![deny(missing_docs, broken_intra_doc_links)]
    105
    #![allow(clippy::should_implement_trait)]
  • rotary-core 0.2.0-alpha.2/src/lib.rs
    9
    #![deny(missing_docs, broken_intra_doc_links)]
    10
    #![allow(clippy::should_implement_trait)]
  • rune 0.12.0/src/lib.rs
    165
    #![allow(clippy::too_many_arguments)]
    166
    #![allow(clippy::should_implement_trait)]
    167
    #![allow(clippy::branches_sharing_code)]
  • s3-ext 0.5.1/src/lib.rs
    24
    #![allow(clippy::redundant_closure_for_method_calls)]
    25
    #![allow(clippy::should_implement_trait)]
    26
    #![allow(clippy::must_use_candidate)]
  • serde_derive_internals 0.26.0/lib.rs
    11
        clippy::result_unit_err,
    12
        clippy::should_implement_trait,
    13
        clippy::trivially_copy_pass_by_ref,
  • serde_json 1.0.91/src/lib.rs
    330
        // Deserializer::from_str, into_iter
    331
        clippy::should_implement_trait,
    332
        // integer and float ser/de requires these sorts of casts
  • serde_json_experimental 1.0.29-rc1/src/lib.rs
    328
    // Deserializer::from_str, into_iter
    329
        should_implement_trait,
    330
    // integer and float ser/de requires these sorts of casts
  • serde_json_lenient 0.1.4/src/lib.rs
    331
        // Deserializer::from_str, into_iter
    332
        clippy::should_implement_trait,
    333
        // integer and float ser/de requires these sorts of casts
  • serde_json_v8 0.1.1/src/lib.rs
    303
        // Deserializer::from_str, into_iter
    304
        should_implement_trait,
    305
        // integer and float ser/de requires these sorts of casts
  • serde_jsonrc 0.1.0/src/lib.rs
    316
        // Deserializer::from_str, into_iter
    317
        should_implement_trait,
    318
        // integer and float ser/de requires these sorts of casts
  • serde_partiql 1.1.65/src/lib.rs
    323
        // Deserializer::from_str, into_iter
    324
        clippy::should_implement_trait,
    325
        // integer and float ser/de requires these sorts of casts
  • serde_yaml 0.9.17/src/lib.rs
    126
        // private Deserializer::next
    127
        clippy::should_implement_trait,
    128
        // things are often more readable this way
  • serde_yaml_with_quirks 0.8.24/src/lib.rs
    75
        // private Deserializer::next
    76
        clippy::should_implement_trait,
    77
        // things are often more readable this way
  • spirt 0.1.0/src/func_at.rs
    11
    // NOTE(eddyb) wrong wrt lifetimes (https://github.com/rust-lang/rust-clippy/issues/5004).
    12
    #![allow(clippy::should_implement_trait)]
  • starlark 0.8.0/src/lib.rs
    379
    #![allow(clippy::single_match)]
    380
    #![allow(clippy::should_implement_trait)]
    381
    #![allow(clippy::len_without_is_empty)]
  • strict-yaml-rust 0.1.2/src/lib.rs
    42
        feature = "cargo-clippy",
    43
        allow(match_same_arms, should_implement_trait)
    44
    )]
  • svg 0.13.0/src/node/element/mod.rs
    3
    #![allow(clippy::new_without_default)]
    4
    #![allow(clippy::should_implement_trait)]
  • tantivy-fst 0.4.0/src/lib.rs
    8
    #![allow(clippy::new_without_default)]
    9
    #![allow(clippy::should_implement_trait)]
  • unity-yaml-rust 0.1.1/src/lib.rs
    39
        feature = "cargo-clippy",
    40
        allow(match_same_arms, should_implement_trait)
    41
    )]
  • ux-dx 0.2.1/src/lib.rs
    46
        clippy::drop_ref,
    47
        clippy::should_implement_trait,
    48
        clippy::wrong_self_convention,
  • vst 0.3.0/src/plugin.rs
    408
        // TODO: implement FromStr
    409
        #![allow(clippy::should_implement_trait)]
    410
        /// Converts a string to a `CanDo` instance. Any given string that does not match the predefined
  • xi-rope 0.3.0/src/lib.rs
    22
        clippy::new_without_default,
    23
        clippy::should_implement_trait,
    24
        clippy::wrong_self_convention
  • yaml-rust 0.4.5/src/lib.rs
    43
        feature = "cargo-clippy",
    44
        allow(match_same_arms, should_implement_trait)
    45
    )]
  • yaml-rust-davvid 0.5.1/src/lib.rs
    50
        feature = "cargo-clippy",
    51
        allow(match_same_arms, should_implement_trait)
    52
    )]
  • zui-core 0.0.3/src/lib.rs
    1
    #![warn(clippy::all, clippy::cargo)]
    2
    #![allow(clippy::should_implement_trait)]