• wasm-streams 0.3.0/src/readable/into_underlying_byte_source.rs
    34
    #[allow(clippy::await_holding_refcell_ref)]
    35
    #[wasm_bindgen]
  • wasm-streams 0.3.0/src/readable/into_underlying_source.rs
    30
    #[allow(clippy::await_holding_refcell_ref)]
    31
    #[wasm_bindgen]
  • wasm-streams 0.3.0/src/writable/into_underlying_sink.rs
    23
    #[allow(clippy::await_holding_refcell_ref)]
    24
    #[wasm_bindgen]
  • yash-syntax 0.6.0/src/parser/lex/heredoc.rs
    63
        /// In case of an error, partial results may be left in `here_doc.content`.
    64
        #[allow(clippy::await_holding_refcell_ref)]
    65
        pub async fn here_doc_content(&mut self, here_doc: &HereDoc) -> Result<()> {
  • actix-web-lab 0.18.9/src/redirect_to_https.rs
    98
        fn call(&self, req: ServiceRequest) -> Self::Future {
    99
            #![allow(clippy::await_holding_refcell_ref)] // RefCell is dropped before await
  • actix-web-lab 0.18.9/src/redirect_to_www.rs
    23
    ) -> Result<ServiceResponse<impl MessageBody>, Error> {
    24
        #![allow(clippy::await_holding_refcell_ref)] // RefCell is dropped before await
  • db_logger 0.1.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![warn(anonymous_parameters, bad_style, missing_docs)]
  • deno_core 0.168.0/runtime.rs
    2756
      ) -> Result<u8, AnyError> {
    2757
        #![allow(clippy::await_holding_refcell_ref)] // False positive.
    2758
        let op_state_ = rc_op_state.borrow();
  • deno_flash 0.22.0/lib.rs
    6
    // https://github.com/rust-lang/rust-clippy/issues/6353
    7
    #![allow(clippy::await_holding_refcell_ref)]
  • deno_runtime 0.94.0/web_worker.rs
    236
      ) -> Result<Option<WorkerControlEvent>, AnyError> {
    237
        #![allow(clippy::await_holding_refcell_ref)] // TODO(ry) remove!
    238
        let mut receiver = self.receiver.borrow_mut();
  • deno_simple_runtime 0.73.2/web_worker.rs
    226
        pub async fn get_control_event(&self) -> Result<Option<WorkerControlEvent>, AnyError> {
    227
            #![allow(clippy::await_holding_refcell_ref)] // TODO(ry) remove!
    228
            let mut receiver = self.receiver.borrow_mut();
  • deno_web 0.117.0/message_port.rs
    57
      ) -> Result<Option<JsMessageData>, AnyError> {
    58
        #![allow(clippy::await_holding_refcell_ref)] // TODO(ry) remove!
    59
        let mut rx = self
  • denox_runtime 0.2.1/web_worker.rs
    237
      ) -> Result<Option<WorkerControlEvent>, AnyError> {
    238
        #![allow(clippy::await_holding_refcell_ref)] // TODO(ry) remove!
    239
        let mut receiver = self.receiver.borrow_mut();
  • endbasic 0.10.0/src/main.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-client 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-core 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-repl 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-rpi 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-sdl 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-std 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • endbasic-terminal 0.10.0/src/lib.rs
    18
    // Keep these in sync with other top-level files.
    19
    #![allow(clippy::await_holding_refcell_ref)]
    20
    #![allow(clippy::collapsible_else_if)]
  • iced_lazy 0.4.0/src/lib.rs
    14
    #![allow(
    15
        clippy::await_holding_refcell_ref,
    16
        clippy::inherent_to_string,
  • nativeshell 0.1.16/src/lib.rs
    4
    #![allow(clippy::type_complexity)]
    5
    #![allow(clippy::await_holding_refcell_ref)]