• actix-web 4.3.0/src/middleware/compress.rs
    110
        #[allow(clippy::borrow_interior_mutable_const)]
    111
        fn call(&self, req: ServiceRequest) -> Self::Future {
  • actix-web 4.3.0/src/middleware/default_headers.rs
    171
        #[allow(clippy::borrow_interior_mutable_const)]
    172
        fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
  • actix-web 4.3.0/src/types/form.rs
    288
    #[allow(clippy::borrow_interior_mutable_const)]
    289
    impl<T> UrlEncoded<T> {
  • actix-web 4.3.0/src/types/json.rs
    324
        /// Create a new future to decode a JSON request payload.
    325
        #[allow(clippy::borrow_interior_mutable_const)]
    326
        pub fn new(
  • actix-web 4.3.0/src/types/payload.rs
    294
        /// Create `MessageBody` for request.
    295
        #[allow(clippy::borrow_interior_mutable_const)]
    296
        pub fn new(req: &HttpRequest, payload: &mut dev::Payload) -> HttpMessageBody {
  • actix-xml 0.2.0/src/lib.rs
    197
        /// Create `XmlBody` for request.
    198
        #[allow(clippy::borrow_interior_mutable_const)]
    199
        pub fn new(req: &HttpRequest, payload: &mut dev::Payload) -> Self {
  • cashweb-keyserver-client 0.1.0-alpha.4/src/client/services.rs
    160
                #[allow(clippy::borrow_interior_mutable_const)]
    161
                let token = response
    255
                #[allow(clippy::borrow_interior_mutable_const)]
    256
                let token = response
  • cloudevents-sdk-reqwest 0.3.1/src/client_response.rs
    86
            match (
    87
                #[allow(clippy::borrow_interior_mutable_const)]
    88
                unwrap_optional_header!(self.headers, reqwest::header::CONTENT_TYPE)
  • fontfor 0.3.1/src/fc/mod.rs
    41
            unsafe { fc::FcConfigDestroy(config) };
    42
            #[allow(clippy::borrow_interior_mutable_const)] // we init it only once
    43
            Lazy::force(&THE_OBJECT_SET);
  • hateoas 2.0.0-alpha.3/src/frameworks/actix/body.rs
    36
        /// Create a new future to decode a JSON request payload.
    37
        #[allow(clippy::borrow_interior_mutable_const)]
    38
        pub fn new(r: HttpRequest, payload: &mut Payload) -> Self {
  • heater 0.2.3/src/heater.rs
    160
        async fn heat_single_page_with_headers() {
    161
            #[allow(clippy::borrow_interior_mutable_const)]
    162
            let m = mock("GET", "/dummy.xml")
  • httpc 0.1.2/tests/test/server.rs
    4
    #[cfg(not(target_arch = "wasm32"))]
    5
    #[allow(clippy::borrow_interior_mutable_const)]
    6
    fn main() {
  • pipitor 0.3.0-alpha.15/src/websub/subscriber.rs
    642
                    let tx = tx.take().unwrap();
    643
                    #[allow(clippy::borrow_interior_mutable_const)]
    644
                    async move {
  • ricksponse 1.0.1/src/entity/payload_body.rs
    36
        /// Create a new future to decode a JSON request payload.
    37
        #[allow(clippy::borrow_interior_mutable_const)]
    38
        pub fn new(r: HttpRequest, payload: &mut Payload) -> Self {
  • tophat 0.3.0/src/server/decode.rs
    89
        let mut is_chunked = false;
    90
        #[allow(clippy::borrow_interior_mutable_const)] // TODO see if I can remove this later
    91
        for header in httparse_req.headers.iter() {
  • tower-http 0.3.5/src/cors/allow_headers.rs
    56
        #[allow(clippy::borrow_interior_mutable_const)]
    57
        pub(super) fn is_wildcard(&self) -> bool {
  • tower-http 0.3.5/src/cors/allow_methods.rs
    70
        #[allow(clippy::borrow_interior_mutable_const)]
    71
        pub(super) fn is_wildcard(&self) -> bool {
  • tower-http 0.3.5/src/cors/allow_origin.rs
    47
        /// [`CorsLayer::allow_origin`]: super::CorsLayer::allow_origin
    48
        #[allow(clippy::borrow_interior_mutable_const)]
    49
        pub fn list<I>(origins: I) -> Self
    85
        #[allow(clippy::borrow_interior_mutable_const)]
    86
        pub(super) fn is_wildcard(&self) -> bool {
  • tower-http 0.3.5/src/cors/expose_headers.rs
    44
        #[allow(clippy::borrow_interior_mutable_const)]
    45
        pub(super) fn is_wildcard(&self) -> bool {
  • user_doc-doc_proc_macro 0.1.0/lib.rs
    182
      #[allow(clippy::borrow_interior_mutable_const)]
    183
      /// Get a collection of the lines of doc comments 
  • zkp-primefield 0.2.0/src/convert.rs
    88
                // UInt should not have interior mutability
    89
                #[allow(clippy::borrow_interior_mutable_const)]
    90
                let val = P::MODULUS.sub(&val);
  • zkp-primefield 0.2.0/src/prime_field.rs
    150
            // UInt should not have interior mutability
    151
            #[allow(clippy::borrow_interior_mutable_const)]
    152
            let uint = uint.mul_redc_inline::<Montgomery<P>>(&P::R3);
    222
        // UInt should not have interior mutability
    223
        #[allow(clippy::borrow_interior_mutable_const)]
    224
        #[inline(always)]
  • zkp-u256 0.2.1/src/traits/mod.rs
    299
            // `Self` should not have interior mutability.
    300
            #[allow(clippy::borrow_interior_mutable_const)]
    301
            self.mul_redc::<M>(&M::R2)
    353
            // mutability.
    354
            #[allow(clippy::borrow_interior_mutable_const)]
    355
            let mont = Self::mul_redc_inline::<M>(self, &M::R2);
  • actix-http 3.3.0/src/lib.rs
    23
        clippy::too_many_arguments,
    24
        clippy::borrow_interior_mutable_const,
    25
        clippy::uninlined_format_args
  • actix-multipart 0.5.0/src/lib.rs
    4
    #![warn(future_incompatible)]
    5
    #![allow(clippy::borrow_interior_mutable_const, clippy::uninlined_format_args)]
  • actori-cors 0.2.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
    2
    //! Cross-origin resource sharing (CORS) for Actori applications
  • actori-files 0.2.1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • actori-http 1.0.1/src/lib.rs
    6
        clippy::new_without_default,
    7
        clippy::borrow_interior_mutable_const
    8
    )]
  • actori-multipart 0.2.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
  • actori-web 2.0.0/src/lib.rs
    4
        clippy::type_complexity,
    5
        clippy::borrow_interior_mutable_const
    6
    )]
  • actori-web-actors 2.0.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
    2
    //! Actori actors integration for Actori web framework
  • actoriwc 1.0.1/src/lib.rs
    3
        clippy::type_complexity,
    4
        clippy::borrow_interior_mutable_const,
    5
        clippy::needless_doctest_main
  • awc 3.1.0/src/lib.rs
    106
        clippy::type_complexity,
    107
        clippy::borrow_interior_mutable_const,
    108
        clippy::needless_doctest_main,
  • clia-ntex-cors 0.2.0/src/lib.rs
    1
    #![allow(
    2
        clippy::borrow_interior_mutable_const,
    3
        clippy::type_complexity,
  • clia-ntex-cors-mod 0.2.0/src/lib.rs
    1
    #![allow(
    2
        clippy::borrow_interior_mutable_const,
    3
        clippy::type_complexity,
  • clia-ntex-files 0.1.1/src/lib.rs
    1
    #![allow(type_alias_bounds, clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • clia-ntex-files-mod 0.1.0/src/lib.rs
    1
    #![allow(type_alias_bounds, clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • clia-ntex-multipart 0.1.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
  • conjure-http 3.5.0/src/lib.rs
    22
        clippy::declare_interior_mutable_const,
    23
        clippy::borrow_interior_mutable_const
    24
    )]
  • endless-web 2.0.0/src/lib.rs
    4
        clippy::type_complexity,
    5
        clippy::borrow_interior_mutable_const
    6
    )]
  • ezk-sip-types 0.1.1/src/lib.rs
    4
        clippy::declare_interior_mutable_const,
    5
        clippy::borrow_interior_mutable_const
    6
    )]
  • fsevent-stream 0.2.3/src/stream.rs
    4
        clippy::cast_possible_wrap,
    5
        clippy::borrow_interior_mutable_const,
    6
        clippy::module_name_repetitions
  • fsevent-stream 0.2.3/src/tests.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::cast_possible_wrap)]
  • futures-net 0.6.0/src/lib.rs
    57
        clippy::type_complexity,
    58
        clippy::borrow_interior_mutable_const,
    59
        clippy::needless_doctest_main,
  • kayrx 0.18.0/src/lib.rs
    11
        clippy::type_complexity,
    12
        clippy::borrow_interior_mutable_const,
    13
        clippy::needless_doctest_main,
  • kayrx-karx 0.1.1/src/lib.rs
    11
        clippy::type_complexity,
    12
        clippy::borrow_interior_mutable_const,
    13
        clippy::needless_doctest_main,
  • kayrx-timer 0.1.1/src/lib.rs
    11
        clippy::type_complexity,
    12
        clippy::borrow_interior_mutable_const,
    13
        clippy::needless_doctest_main,
  • keclc-file 0.2.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • keclc-multipart 0.1.0/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
  • lsmtree 0.1.1/src/lib.rs
    9
    #![allow(clippy::declare_interior_mutable_const)]
    10
    #![allow(clippy::borrow_interior_mutable_const)]
    11
    extern crate alloc;
  • multipart-rfc7578 0.7.0/src/part.rs
    8
    //
    9
    #![allow(clippy::borrow_interior_mutable_const)]
    10
    use crate::CRLF;
  • ntex 0.6.3/src/lib.rs
    17
        clippy::type_complexity,
    18
        clippy::borrow_interior_mutable_const,
    19
        clippy::needless_doctest_main,
  • ntex-cors 0.1.0/src/lib.rs
    1
    #![allow(
    2
        clippy::borrow_interior_mutable_const,
    3
        clippy::type_complexity,
  • requiem-cors 0.2.0-r1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
    2
    //! Cross-origin resource sharing (CORS) for Actix applications
  • requiem-files 0.2.1-r1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • requiem-http 1.0.1/src/lib.rs
    6
        clippy::new_without_default,
    7
        clippy::borrow_interior_mutable_const
    8
    )]
  • requiem-multipart 0.2.0-r1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
  • requiem-wc 1.0.1/src/lib.rs
    3
        clippy::type_complexity,
    4
        clippy::borrow_interior_mutable_const,
    5
        clippy::needless_doctest_main
  • requiem-web 2.0.0/src/lib.rs
    4
        clippy::type_complexity,
    5
        clippy::borrow_interior_mutable_const
    6
    )]
  • requiem-web-actors 2.0.0-r1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
    2
    //! Actix actors integration for Actix web framework
  • s3s 0.2.0/src/ops/generated.rs
    1
    #![allow(clippy::declare_interior_mutable_const)]
    2
    #![allow(clippy::borrow_interior_mutable_const)]
  • scrappy 0.0.2/src/lib.rs
    4
        clippy::type_complexity,
    5
        clippy::borrow_interior_mutable_const
    6
    )]
  • scrappy-client 0.0.1/src/lib.rs
    3
        clippy::type_complexity,
    4
        clippy::borrow_interior_mutable_const,
    5
        clippy::needless_doctest_main
  • scrappy-cors 0.0.1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
    2
    //! Cross-origin resource sharing (CORS) for scrappy applications
  • scrappy-files 0.0.1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const, clippy::type_complexity)]
  • scrappy-http 0.0.1/src/lib.rs
    6
        clippy::new_without_default,
    7
        clippy::borrow_interior_mutable_const
    8
    )]
  • scrappy-multipart 0.0.1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
  • scrappy-web-actors 0.0.1/src/lib.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
    2
    //! scrappy actors integration for scrappy web framework
  • tophat 0.3.0/src/server/encode.rs
    1
    #![allow(clippy::borrow_interior_mutable_const)]
    2
    // TODO support more than fixed length body