• autocxx-engine 0.24.0/src/types.rs
    24
    #[derive(Debug, PartialEq, PartialOrd, Eq, Hash, Clone)]
    25
    #[allow(clippy::rc_buffer)]
    26
    pub struct Namespace(Arc<Vec<String>>);
  • cdbc-sqlite 0.1.23/src/statement/mod.rs
    16
    #[derive(Debug, Clone)]
    17
    #[allow(clippy::rc_buffer)]
    18
    pub struct SqliteStatement {
  • cursive_core 0.3.7/src/views/edit_view.rs
    77
        /// Current content.
    78
        #[allow(clippy::rc_buffer)] // Rc::make_mut is what we want here.
    79
        content: Rc<String>,
    370
        /// Get the current text.
    371
        #[allow(clippy::rc_buffer)]
    372
        pub fn get_content(&self) -> Rc<String> {
  • datafusion-expr 17.0.0/src/expr_fn.rs
    546
    /// The signature and state type must match the `Accumulator's implementation`.
    547
    #[allow(clippy::rc_buffer)]
    548
    pub fn create_udaf(
  • datafusion-expr 17.0.0/src/logical_plan/plan.rs
    1945
    #[derive(Debug, Clone, PartialEq, Eq)]
    1946
    #[allow(clippy::rc_buffer)]
    1947
    pub struct StringifiedPlan {
  • druid 0.8.2/examples/event_viewer.rs
    48
    #[allow(clippy::rc_buffer)]
    49
    #[derive(Clone, Data, Lens)]
  • druid 0.8.2/examples/game_of_life.rs
    43
    #[allow(clippy::rc_buffer)]
    44
    #[derive(Clone, Data, PartialEq)]
  • envoy_http 0.2.2/src/server.rs
    35
        /// We don't use a Mutex around the Vec here because adding a middleware during execution should be an error.
    36
        #[allow(clippy::rc_buffer)]
    37
        middleware: Arc<Vec<Arc<dyn Middleware>>>,
  • fluence-fork-parity-multiaddr 0.11.2/src/lib.rs
    42
    /// Representation of a Multiaddr.
    43
    #[allow(clippy::rc_buffer)]
    44
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • gemachain-runtime 1.8.2/src/bank.rs
    953
        /// Builtin programs activated dynamically by feature
    954
        #[allow(clippy::rc_buffer)]
    955
        feature_builtins: Arc<Vec<(Builtin, Pubkey, ActivationType)>>,
  • google-cognitive-apis 0.2.1/src/common.rs
    79
    /// Google Cloud Platform project JSON credentials (provided as String).
    80
    #[allow(clippy::rc_buffer)]
    81
    pub(crate) fn get_token(google_credentials: impl AsRef<str>) -> Result<Arc<String>> {
  • investments 4.16.1/src/tax_statement/statement/parser.rs
    192
        #[allow(clippy::rc_buffer)]
    193
        buffer: Rc<String>,
  • kitsune_p2p 0.1.0/src/types/event.rs
    61
        /// The data to sign.
    62
        #[allow(clippy::rc_buffer)]
    63
        pub data: Arc<Vec<u8>>,
  • li-surf 2.3.3/src/client.rs
    53
        /// We don't use a Mutex around the Vec here because adding a middleware during execution should be an error.
    54
        #[allow(clippy::rc_buffer)]
    55
        middleware: Arc<Vec<Arc<dyn Middleware>>>,
  • libp2prs-floodsub 0.3.0/src/floodsub.rs
    41
    #[allow(clippy::rc_buffer)]
    42
    pub struct FloodSub {
    133
        // Tell new peer my subscribed topics.
    134
        #[allow(clippy::rc_buffer)]
    135
        fn get_hello_packet(&self) -> Arc<Vec<u8>> {
    449
    #[allow(clippy::rc_buffer)]
    450
    async fn handle_send_message(mut rx: UnboundedReceiver<Arc<Vec<u8>>>, mut writer: Substream) -> Result<()> {
  • libp2prs-multiaddr 0.3.0/src/lib.rs
    36
    /// Representation of a Multiaddr.
    37
    #[allow(clippy::rc_buffer)]
    38
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • mio_surf 2.1.0/src/client.rs
    56
        /// We don't use a Mutex around the Vec here because adding a middleware during execution should be an error.
    57
        #[allow(clippy::rc_buffer)]
    58
        middleware: Arc<Vec<Arc<dyn Middleware>>>,
  • multiaddr 0.17.0/src/lib.rs
    37
    /// Representation of a Multiaddr.
    38
    #[allow(clippy::rc_buffer)]
    39
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • parity-multiaddr 0.11.2/src/lib.rs
    42
    /// Representation of a Multiaddr.
    43
    #[allow(clippy::rc_buffer)]
    44
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • queen 0.26.0/src/node.rs
    65
    pub struct Node<C: Codec> {
    66
        #[allow(clippy::rc_buffer)]
    67
        queues: Arc<Vec<Queue<Packet<C>>>>,
  • rbdc-sqlite 0.1.15/src/statement/mod.rs
    13
    #[derive(Debug, Clone)]
    14
    #[allow(clippy::rc_buffer)]
    15
    pub struct SqliteStatement {
  • rosomaxa 0.2.6/src/utils/environment.rs
    91
        // NOTE seems falls positive.
    92
        #[allow(clippy::rc_buffer)]
    93
        thread_pools: Option<Arc<Vec<ThreadPool>>>,
  • safecoin-runtime 1.14.3/src/bank.rs
    1309
        /// Dynamic feature transitions for builtin programs
    1310
        #[allow(clippy::rc_buffer)]
    1311
        builtin_feature_transitions: Arc<Vec<BuiltinFeatureTransition>>,
  • solana-runtime 1.14.13/src/bank.rs
    1040
        /// Dynamic feature transitions for builtin programs
    1041
        #[allow(clippy::rc_buffer)]
    1042
        builtin_feature_transitions: Arc<Vec<BuiltinFeatureTransition>>,
  • sqlx-core 0.6.2/src/sqlite/statement/mod.rs
    18
    #[derive(Debug, Clone)]
    19
    #[allow(clippy::rc_buffer)]
    20
    pub struct SqliteStatement<'q> {
  • sqlx-core-guts 0.6.0/src/sqlite/statement/mod.rs
    17
    #[derive(Debug, Clone)]
    18
    #[allow(clippy::rc_buffer)]
    19
    pub struct SqliteStatement<'q> {
  • summer-boot 1.0.0/src/web2/server/server.rs
    39
        /// 在这里不在Vec使用互斥体,因为在执行期间添加中间件应该是一个错误。
    40
        #[allow(clippy::rc_buffer)]
    41
        middleware: Arc<Vec<Arc<dyn Middleware<State>>>>,
  • surf 2.3.2/src/client.rs
    53
        /// We don't use a Mutex around the Vec here because adding a middleware during execution should be an error.
    54
        #[allow(clippy::rc_buffer)]
    55
        middleware: Arc<Vec<Arc<dyn Middleware>>>,
  • tet-multiaddr 0.11.0/src/lib.rs
    42
    /// Representation of a Multiaddr.
    43
    #[allow(clippy::rc_buffer)]
    44
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • tetsy-multiaddr 0.11.2/src/lib.rs
    42
    /// Representation of a Multiaddr.
    43
    #[allow(clippy::rc_buffer)]
    44
    #[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Hash)]
  • tide 0.17.0-beta.1/src/server.rs
    38
        /// We don't use a Mutex around the Vec here because adding a middleware during execution should be an error.
    39
        #[allow(clippy::rc_buffer)]
    40
        middleware: Arc<Vec<Arc<dyn Middleware<State>>>>,
  • vfs 0.9.0/src/impls/memory.rs
    84
    struct ReadableFile {
    85
        #[allow(clippy::rc_buffer)] // to allow accessing the same object as writable
    86
        content: Arc<Vec<u8>>,
    272
        file_type: VfsFileType,
    273
        #[allow(clippy::rc_buffer)] // to allow accessing the same object as writable
    274
        content: Arc<Vec<u8>>,
  • waffles-solana-runtime 1.15.0/src/bank.rs
    1079
        /// Dynamic feature transitions for builtin programs
    1080
        #[allow(clippy::rc_buffer)]
    1081
        builtin_feature_transitions: Arc<Vec<BuiltinFeatureTransition>>,
  • zamm_yang 0.2.0/src/tao/action/implement_form.rs
    102
        /// concept's currently assigned runtime ID.
    103
        #[allow(clippy::rc_buffer)]
    104
        pub fn concept_id(&self) -> Option<Rc<usize>> {
    121
        /// implementation.
    122
        #[allow(clippy::rc_buffer)]
    123
        pub fn documentation(&self) -> Option<Rc<str>> {
    141
        /// concept's class.
    142
        #[allow(clippy::rc_buffer)]
    143
        pub fn dual_purpose_documentation(&self) -> Option<Rc<str>> {
  • zamm_yang 0.2.0/src/tao/archetype/rust_item_archetype/data_archetype_form.rs
    109
        /// Get the Rust code representation for the default value of this concept.
    110
        #[allow(clippy::rc_buffer)]
    111
        pub fn default_value(&self) -> Option<Rc<str>> {
    126
        /// Get the name of the Rust primitive that this concept represents.
    127
        #[allow(clippy::rc_buffer)]
    128
        pub fn rust_primitive(&self) -> Option<Rc<str>> {
    143
        /// Get the unboxed version of this primitive.
    144
        #[allow(clippy::rc_buffer)]
    145
        pub fn unboxed_representation(&self) -> Option<Rc<str>> {
    161
        /// concept.
    162
        #[allow(clippy::rc_buffer)]
    163
        pub fn dummy_value(&self) -> Option<Rc<str>> {
  • zamm_yang 0.2.0/src/tao/form/rust_item/crate_form.rs
    93
        /// Get the version number for the crate.
    94
        #[allow(clippy::rc_buffer)]
    95
        pub fn version(&self) -> Option<Rc<str>> {
  • zamm_yang 0.2.0/src/tao/form/rust_item/data/number_form.rs
    105
        /// Retrieve usize-valued StrongValue.
    106
        #[allow(clippy::rc_buffer)]
    107
        pub fn value(&self) -> Option<Rc<usize>> {
  • zamm_yang 0.2.0/src/tao/form/rust_item/data/str_concept_form.rs
    105
        /// Retrieve str-valued StrongValue.
    106
        #[allow(clippy::rc_buffer)]
    107
        pub fn value(&self) -> Option<Rc<str>> {
  • cdbc-sqlite 0.1.23/src/row.rs
    1
    #![allow(clippy::rc_buffer)]
  • cdbc-sqlite 0.1.23/src/statement/virtual.rs
    1
    #![allow(clippy::rc_buffer)]
  • distill-daemon 0.0.3/src/lib.rs
    2
    #![warn(clippy::all, rust_2018_idioms, rust_2018_compatibility)]
    3
    #![allow(clippy::rc_buffer)] // https://github.com/rust-lang/rust-clippy/issues/6170
  • pubgrub 0.2.1/src/lib.rs
    209
    #![allow(clippy::rc_buffer)]
    210
    #![warn(missing_docs)]
  • rbdc-sqlite 0.1.15/src/row.rs
    1
    #![allow(clippy::rc_buffer)]
  • rbdc-sqlite 0.1.15/src/statement/virtual.rs
    1
    #![allow(clippy::rc_buffer)]
  • rust_engineio 0.4.1/src/lib.rs
    66
    //!
    67
    #![allow(clippy::rc_buffer)]
    68
    #![warn(clippy::complexity)]
  • rust_socketio 0.4.1/src/lib.rs
    76
    //!
    77
    #![allow(clippy::rc_buffer)]
    78
    #![warn(clippy::complexity)]
  • solana-core 1.14.13/src/broadcast_stage/standard_broadcast_run.rs
    1
    #![allow(clippy::rc_buffer)]
  • solana-core 1.14.13/src/broadcast_stage.rs
    1
    //! A stage to broadcast data from a leader node to validators
    2
    #![allow(clippy::rc_buffer)]
    3
    use {
  • solana-core 1.14.13/src/retransmit_stage.rs
    1
    //! The `retransmit_stage` retransmits shreds between validators
    2
    #![allow(clippy::rc_buffer)]
  • sqlx-core 0.6.2/src/sqlite/row.rs
    1
    #![allow(clippy::rc_buffer)]
  • sqlx-core 0.6.2/src/sqlite/statement/virtual.rs
    1
    #![allow(clippy::rc_buffer)]
  • sqlx-core-guts 0.6.0/src/sqlite/row.rs
    1
    #![allow(clippy::rc_buffer)]
  • sqlx-core-guts 0.6.0/src/sqlite/statement/virtual.rs
    1
    #![allow(clippy::rc_buffer)]
  • vole 0.1.1/src/lib.rs
    6
    #![allow(clippy::stable_sort_primitive)]
    7
    #![allow(clippy::rc_buffer)]
    8
    #![warn(clippy::needless_borrow, clippy::use_self)]