diff --git a/scripts/dbus-codegen b/scripts/dbus-codegen index 68f6586..489a033 100755 --- a/scripts/dbus-codegen +++ b/scripts/dbus-codegen @@ -12,7 +12,7 @@ rm -f "$dest.rs" rm -rf "$dest" mkdir -p "$dest" -echo "#![allow(unused)]\n#![allow(clippy::all)]" > "$modfile" +echo "#![allow(unused)]" > "$modfile" for file in $(ls -a $specs/*.xml); do sed -i 's/tp:type=/tp:typehint=/g' "$file" @@ -31,7 +31,9 @@ for file in $(ls -a $specs/*.xml); do -a AsRefClosure \ -o "$out" - rustfmt $out + sed -i '1s/^/#![allow(clippy::all)]\n\n/' "$out" + + rustfmt "$out" echo "\nmod $name;\npub use self::$name::*;" >> "$modfile" done diff --git a/src/telepathy.rs b/src/telepathy.rs index a44c4f5..d215932 100644 --- a/src/telepathy.rs +++ b/src/telepathy.rs @@ -1,5 +1,5 @@ #![allow(unused)] -#![allow(clippy::all)] + mod account_interface_addressing; pub use self::account_interface_addressing::*; diff --git a/src/telepathy/account.rs b/src/telepathy/account.rs index c56abb4..41bd0aa 100644 --- a/src/telepathy/account.rs +++ b/src/telepathy/account.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_interface_addressing.rs b/src/telepathy/account_interface_addressing.rs index 0df7b2f..cde8ab3 100644 --- a/src/telepathy/account_interface_addressing.rs +++ b/src/telepathy/account_interface_addressing.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Interface_Addressing.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_interface_addressing.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_interface_avatar.rs b/src/telepathy/account_interface_avatar.rs index 004e23a..45d44bc 100644 --- a/src/telepathy/account_interface_avatar.rs +++ b/src/telepathy/account_interface_avatar.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Interface_Avatar.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_interface_avatar.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_interface_external_password_storage.rs b/src/telepathy/account_interface_external_password_storage.rs index ddcfbaa..fa7a083 100644 --- a/src/telepathy/account_interface_external_password_storage.rs +++ b/src/telepathy/account_interface_external_password_storage.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Interface_External_Password_Storage.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_interface_external_password_storage.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_interface_hidden.rs b/src/telepathy/account_interface_hidden.rs index ed6db2e..aae5cbf 100644 --- a/src/telepathy/account_interface_hidden.rs +++ b/src/telepathy/account_interface_hidden.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Interface_Hidden.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_interface_hidden.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_interface_storage.rs b/src/telepathy/account_interface_storage.rs index 5acc587..e0eb157 100644 --- a/src/telepathy/account_interface_storage.rs +++ b/src/telepathy/account_interface_storage.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Interface_Storage.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_interface_storage.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_manager.rs b/src/telepathy/account_manager.rs index f84d7f6..429ee22 100644 --- a/src/telepathy/account_manager.rs +++ b/src/telepathy/account_manager.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Manager.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_manager.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/account_manager_interface_hidden.rs b/src/telepathy/account_manager_interface_hidden.rs index 411e80d..391669d 100644 --- a/src/telepathy/account_manager_interface_hidden.rs +++ b/src/telepathy/account_manager_interface_hidden.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Account_Manager_Interface_Hidden.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/account_manager_interface_hidden.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/all.rs b/src/telepathy/all.rs index fe9cbcf..e08f4ce 100644 --- a/src/telepathy/all.rs +++ b/src/telepathy/all.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/all.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/all.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/authentication_tls_certificate.rs b/src/telepathy/authentication_tls_certificate.rs index cfe5922..7f8c0a6 100644 --- a/src/telepathy/authentication_tls_certificate.rs +++ b/src/telepathy/authentication_tls_certificate.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Authentication_TLS_Certificate.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/authentication_tls_certificate.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content.rs b/src/telepathy/call_content.rs index 4bea68f..027acc6 100644 --- a/src/telepathy/call_content.rs +++ b/src/telepathy/call_content.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_interface_audio_control.rs b/src/telepathy/call_content_interface_audio_control.rs index 0231c82..25a3e17 100644 --- a/src/telepathy/call_content_interface_audio_control.rs +++ b/src/telepathy/call_content_interface_audio_control.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Interface_Audio_Control.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_interface_audio_control.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_interface_dtmf.rs b/src/telepathy/call_content_interface_dtmf.rs index f56c78b..291bc5e 100644 --- a/src/telepathy/call_content_interface_dtmf.rs +++ b/src/telepathy/call_content_interface_dtmf.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Interface_DTMF.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_interface_dtmf.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_interface_media.rs b/src/telepathy/call_content_interface_media.rs index 63796c0..332f3e2 100644 --- a/src/telepathy/call_content_interface_media.rs +++ b/src/telepathy/call_content_interface_media.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Interface_Media.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_interface_media.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_interface_video_control.rs b/src/telepathy/call_content_interface_video_control.rs index 17b2cd8..4f8476b 100644 --- a/src/telepathy/call_content_interface_video_control.rs +++ b/src/telepathy/call_content_interface_video_control.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Interface_Video_Control.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_interface_video_control.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_media_description.rs b/src/telepathy/call_content_media_description.rs index 2f7c8b5..80be971 100644 --- a/src/telepathy/call_content_media_description.rs +++ b/src/telepathy/call_content_media_description.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Media_Description.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_media_description.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_media_description_interface_rtcp_extended_reports.rs b/src/telepathy/call_content_media_description_interface_rtcp_extended_reports.rs index 9e3c2a9..d45fd5a 100644 --- a/src/telepathy/call_content_media_description_interface_rtcp_extended_reports.rs +++ b/src/telepathy/call_content_media_description_interface_rtcp_extended_reports.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Media_Description_Interface_RTCP_Extended_Reports.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_media_description_interface_rtcp_extended_reports.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_media_description_interface_rtcp_feedback.rs b/src/telepathy/call_content_media_description_interface_rtcp_feedback.rs index 29d64d6..a24dcf5 100644 --- a/src/telepathy/call_content_media_description_interface_rtcp_feedback.rs +++ b/src/telepathy/call_content_media_description_interface_rtcp_feedback.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Media_Description_Interface_RTCP_Feedback.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_media_description_interface_rtcp_feedback.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_content_media_description_interface_rtp_header_extensions.rs b/src/telepathy/call_content_media_description_interface_rtp_header_extensions.rs index 254211e..51d91af 100644 --- a/src/telepathy/call_content_media_description_interface_rtp_header_extensions.rs +++ b/src/telepathy/call_content_media_description_interface_rtp_header_extensions.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Content_Media_Description_Interface_RTP_Header_Extensions.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_content_media_description_interface_rtp_header_extensions.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_interface_mute.rs b/src/telepathy/call_interface_mute.rs index 978ec61..217cb6d 100644 --- a/src/telepathy/call_interface_mute.rs +++ b/src/telepathy/call_interface_mute.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Interface_Mute.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_interface_mute.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_stream.rs b/src/telepathy/call_stream.rs index 1f7d8e5..36b3bf0 100644 --- a/src/telepathy/call_stream.rs +++ b/src/telepathy/call_stream.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Stream.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_stream.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_stream_endpoint.rs b/src/telepathy/call_stream_endpoint.rs index f758468..7258df9 100644 --- a/src/telepathy/call_stream_endpoint.rs +++ b/src/telepathy/call_stream_endpoint.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Stream_Endpoint.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_stream_endpoint.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/call_stream_interface_media.rs b/src/telepathy/call_stream_interface_media.rs index 06a66f2..198f998 100644 --- a/src/telepathy/call_stream_interface_media.rs +++ b/src/telepathy/call_stream_interface_media.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Call_Stream_Interface_Media.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/call_stream_interface_media.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel.rs b/src/telepathy/channel.rs index 0cee4f5..cdb65e1 100644 --- a/src/telepathy/channel.rs +++ b/src/telepathy/channel.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_bundle.rs b/src/telepathy/channel_bundle.rs index 5657302..3c90751 100644 --- a/src/telepathy/channel_bundle.rs +++ b/src/telepathy/channel_bundle.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Bundle.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_bundle.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_dispatch_operation.rs b/src/telepathy/channel_dispatch_operation.rs index ce3d718..f41c55d 100644 --- a/src/telepathy/channel_dispatch_operation.rs +++ b/src/telepathy/channel_dispatch_operation.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Dispatch_Operation.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_dispatch_operation.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_dispatcher.rs b/src/telepathy/channel_dispatcher.rs index 1d11f19..0a68160 100644 --- a/src/telepathy/channel_dispatcher.rs +++ b/src/telepathy/channel_dispatcher.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Dispatcher.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_dispatcher.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_dispatcher_interface_messages1.rs b/src/telepathy/channel_dispatcher_interface_messages1.rs index 46748fe..c2d99ae 100644 --- a/src/telepathy/channel_dispatcher_interface_messages1.rs +++ b/src/telepathy/channel_dispatcher_interface_messages1.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Dispatcher_Interface_Messages1.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_dispatcher_interface_messages1.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_dispatcher_interface_operation_list.rs b/src/telepathy/channel_dispatcher_interface_operation_list.rs index b0dcdf4..ca0a911 100644 --- a/src/telepathy/channel_dispatcher_interface_operation_list.rs +++ b/src/telepathy/channel_dispatcher_interface_operation_list.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Dispatcher_Interface_Operation_List.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_dispatcher_interface_operation_list.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_future.rs b/src/telepathy/channel_future.rs index ade632d..ae9be3a 100644 --- a/src/telepathy/channel_future.rs +++ b/src/telepathy/channel_future.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Future.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_future.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_handler.rs b/src/telepathy/channel_handler.rs index 18f8ed4..263cb8c 100644 --- a/src/telepathy/channel_handler.rs +++ b/src/telepathy/channel_handler.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Handler.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_handler.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_addressing.rs b/src/telepathy/channel_interface_addressing.rs index 4dfb087..f293644 100644 --- a/src/telepathy/channel_interface_addressing.rs +++ b/src/telepathy/channel_interface_addressing.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Addressing.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_addressing.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_anonymity.rs b/src/telepathy/channel_interface_anonymity.rs index c724b0e..0fc1cd6 100644 --- a/src/telepathy/channel_interface_anonymity.rs +++ b/src/telepathy/channel_interface_anonymity.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Anonymity.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_anonymity.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_call_state.rs b/src/telepathy/channel_interface_call_state.rs index c50d25b..402913b 100644 --- a/src/telepathy/channel_interface_call_state.rs +++ b/src/telepathy/channel_interface_call_state.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Call_State.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_call_state.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_captcha_authentication.rs b/src/telepathy/channel_interface_captcha_authentication.rs index 389c8e0..61fab13 100644 --- a/src/telepathy/channel_interface_captcha_authentication.rs +++ b/src/telepathy/channel_interface_captcha_authentication.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Captcha_Authentication.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_captcha_authentication.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_chat_state.rs b/src/telepathy/channel_interface_chat_state.rs index 441f911..6481130 100644 --- a/src/telepathy/channel_interface_chat_state.rs +++ b/src/telepathy/channel_interface_chat_state.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Chat_State.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_chat_state.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_conference.rs b/src/telepathy/channel_interface_conference.rs index ff7fc62..8789201 100644 --- a/src/telepathy/channel_interface_conference.rs +++ b/src/telepathy/channel_interface_conference.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Conference.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_conference.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_credentials_storage.rs b/src/telepathy/channel_interface_credentials_storage.rs index f3baff7..fe7e0fb 100644 --- a/src/telepathy/channel_interface_credentials_storage.rs +++ b/src/telepathy/channel_interface_credentials_storage.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Credentials_Storage.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_credentials_storage.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_destroyable.rs b/src/telepathy/channel_interface_destroyable.rs index a63fead..3002e57 100644 --- a/src/telepathy/channel_interface_destroyable.rs +++ b/src/telepathy/channel_interface_destroyable.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Destroyable.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_destroyable.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_dtmf.rs b/src/telepathy/channel_interface_dtmf.rs index fec9bcc..beb4628 100644 --- a/src/telepathy/channel_interface_dtmf.rs +++ b/src/telepathy/channel_interface_dtmf.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_DTMF.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_dtmf.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_file_transfer_metadata.rs b/src/telepathy/channel_interface_file_transfer_metadata.rs index 3135636..56df025 100644 --- a/src/telepathy/channel_interface_file_transfer_metadata.rs +++ b/src/telepathy/channel_interface_file_transfer_metadata.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_File_Transfer_Metadata.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_file_transfer_metadata.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_group.rs b/src/telepathy/channel_interface_group.rs index e2ee124..0b6f4f9 100644 --- a/src/telepathy/channel_interface_group.rs +++ b/src/telepathy/channel_interface_group.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Group.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_group.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_hold.rs b/src/telepathy/channel_interface_hold.rs index eb793e5..3513da5 100644 --- a/src/telepathy/channel_interface_hold.rs +++ b/src/telepathy/channel_interface_hold.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Hold.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_hold.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_html.rs b/src/telepathy/channel_interface_html.rs index 7015782..09269f6 100644 --- a/src/telepathy/channel_interface_html.rs +++ b/src/telepathy/channel_interface_html.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_HTML.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_html.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_media_signalling.rs b/src/telepathy/channel_interface_media_signalling.rs index a4cb75d..7418b3d 100644 --- a/src/telepathy/channel_interface_media_signalling.rs +++ b/src/telepathy/channel_interface_media_signalling.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Media_Signalling.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_media_signalling.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_mergeable_conference.rs b/src/telepathy/channel_interface_mergeable_conference.rs index 537f42d..368e602 100644 --- a/src/telepathy/channel_interface_mergeable_conference.rs +++ b/src/telepathy/channel_interface_mergeable_conference.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Mergeable_Conference.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_mergeable_conference.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_messages.rs b/src/telepathy/channel_interface_messages.rs index 060484d..664913c 100644 --- a/src/telepathy/channel_interface_messages.rs +++ b/src/telepathy/channel_interface_messages.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Messages.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_messages.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_password.rs b/src/telepathy/channel_interface_password.rs index 8a7751c..77ad608 100644 --- a/src/telepathy/channel_interface_password.rs +++ b/src/telepathy/channel_interface_password.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Password.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_password.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_picture.rs b/src/telepathy/channel_interface_picture.rs index 042ea17..237aa00 100644 --- a/src/telepathy/channel_interface_picture.rs +++ b/src/telepathy/channel_interface_picture.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Picture.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_picture.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_room.rs b/src/telepathy/channel_interface_room.rs index bd7f07b..724f7b3 100644 --- a/src/telepathy/channel_interface_room.rs +++ b/src/telepathy/channel_interface_room.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Room.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_room.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_room_config.rs b/src/telepathy/channel_interface_room_config.rs index 4a43fa8..af6eacb 100644 --- a/src/telepathy/channel_interface_room_config.rs +++ b/src/telepathy/channel_interface_room_config.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Room_Config.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_room_config.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_sasl_authentication.rs b/src/telepathy/channel_interface_sasl_authentication.rs index d569a1b..76a91b9 100644 --- a/src/telepathy/channel_interface_sasl_authentication.rs +++ b/src/telepathy/channel_interface_sasl_authentication.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_SASL_Authentication.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_sasl_authentication.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_securable.rs b/src/telepathy/channel_interface_securable.rs index 2f52712..632afaa 100644 --- a/src/telepathy/channel_interface_securable.rs +++ b/src/telepathy/channel_interface_securable.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Securable.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_securable.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_service_point.rs b/src/telepathy/channel_interface_service_point.rs index be5b6f4..43ca44b 100644 --- a/src/telepathy/channel_interface_service_point.rs +++ b/src/telepathy/channel_interface_service_point.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Service_Point.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_service_point.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_sms.rs b/src/telepathy/channel_interface_sms.rs index 279bae8..b09279e 100644 --- a/src/telepathy/channel_interface_sms.rs +++ b/src/telepathy/channel_interface_sms.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_SMS.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_sms.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_splittable.rs b/src/telepathy/channel_interface_splittable.rs index cb91a6e..c8d6a43 100644 --- a/src/telepathy/channel_interface_splittable.rs +++ b/src/telepathy/channel_interface_splittable.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Splittable.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_splittable.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_subject.rs b/src/telepathy/channel_interface_subject.rs index c8c1de7..7fcc207 100644 --- a/src/telepathy/channel_interface_subject.rs +++ b/src/telepathy/channel_interface_subject.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Subject.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_subject.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_transfer.rs b/src/telepathy/channel_interface_transfer.rs index ec748a2..ba4dcf8 100644 --- a/src/telepathy/channel_interface_transfer.rs +++ b/src/telepathy/channel_interface_transfer.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Transfer.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_transfer.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_interface_tube.rs b/src/telepathy/channel_interface_tube.rs index 7ce9ec3..3acd414 100644 --- a/src/telepathy/channel_interface_tube.rs +++ b/src/telepathy/channel_interface_tube.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Interface_Tube.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_interface_tube.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_request.rs b/src/telepathy/channel_request.rs index 7acbc0e..d5e6703 100644 --- a/src/telepathy/channel_request.rs +++ b/src/telepathy/channel_request.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Request.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_request.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_call.rs b/src/telepathy/channel_type_call.rs index 0400667..a390c6b 100644 --- a/src/telepathy/channel_type_call.rs +++ b/src/telepathy/channel_type_call.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Call.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_call.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_contact_list.rs b/src/telepathy/channel_type_contact_list.rs index 1dc4a9c..77efca8 100644 --- a/src/telepathy/channel_type_contact_list.rs +++ b/src/telepathy/channel_type_contact_list.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Contact_List.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_contact_list.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_contact_search.rs b/src/telepathy/channel_type_contact_search.rs index 1214ca1..e3c1a6e 100644 --- a/src/telepathy/channel_type_contact_search.rs +++ b/src/telepathy/channel_type_contact_search.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Contact_Search.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_contact_search.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_dbus_tube.rs b/src/telepathy/channel_type_dbus_tube.rs index e0dcf23..6418937 100644 --- a/src/telepathy/channel_type_dbus_tube.rs +++ b/src/telepathy/channel_type_dbus_tube.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_DBus_Tube.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_dbus_tube.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_file_transfer.rs b/src/telepathy/channel_type_file_transfer.rs index ca15f46..bbc16b6 100644 --- a/src/telepathy/channel_type_file_transfer.rs +++ b/src/telepathy/channel_type_file_transfer.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_File_Transfer.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_file_transfer.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_room_list.rs b/src/telepathy/channel_type_room_list.rs index d7cfd3c..d4bb9c8 100644 --- a/src/telepathy/channel_type_room_list.rs +++ b/src/telepathy/channel_type_room_list.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Room_List.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_room_list.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_server_authentication.rs b/src/telepathy/channel_type_server_authentication.rs index 518acec..7cedde8 100644 --- a/src/telepathy/channel_type_server_authentication.rs +++ b/src/telepathy/channel_type_server_authentication.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Server_Authentication.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_server_authentication.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_server_tls_connection.rs b/src/telepathy/channel_type_server_tls_connection.rs index 3c0acaa..abfbaab 100644 --- a/src/telepathy/channel_type_server_tls_connection.rs +++ b/src/telepathy/channel_type_server_tls_connection.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Server_TLS_Connection.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_server_tls_connection.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_stream_tube.rs b/src/telepathy/channel_type_stream_tube.rs index 72fa8a1..8ba6d9f 100644 --- a/src/telepathy/channel_type_stream_tube.rs +++ b/src/telepathy/channel_type_stream_tube.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Stream_Tube.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_stream_tube.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_streamed_media.rs b/src/telepathy/channel_type_streamed_media.rs index 2720c9a..4e2c189 100644 --- a/src/telepathy/channel_type_streamed_media.rs +++ b/src/telepathy/channel_type_streamed_media.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Streamed_Media.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_streamed_media.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_text.rs b/src/telepathy/channel_type_text.rs index 25b7d82..04a5b89 100644 --- a/src/telepathy/channel_type_text.rs +++ b/src/telepathy/channel_type_text.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Text.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_text.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/channel_type_tubes.rs b/src/telepathy/channel_type_tubes.rs index f40e1a4..7fd5425 100644 --- a/src/telepathy/channel_type_tubes.rs +++ b/src/telepathy/channel_type_tubes.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Channel_Type_Tubes.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/channel_type_tubes.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client.rs b/src/telepathy/client.rs index dd48e66..1b9cbdd 100644 --- a/src/telepathy/client.rs +++ b/src/telepathy/client.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client_approver.rs b/src/telepathy/client_approver.rs index f851e0a..220ff0a 100644 --- a/src/telepathy/client_approver.rs +++ b/src/telepathy/client_approver.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client_Approver.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client_approver.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client_handler.rs b/src/telepathy/client_handler.rs index 69edf1c..32a44ea 100644 --- a/src/telepathy/client_handler.rs +++ b/src/telepathy/client_handler.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client_Handler.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client_handler.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client_handler_future.rs b/src/telepathy/client_handler_future.rs index c1a8261..4b40c6f 100644 --- a/src/telepathy/client_handler_future.rs +++ b/src/telepathy/client_handler_future.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client_Handler_Future.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client_handler_future.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client_interface_requests.rs b/src/telepathy/client_interface_requests.rs index 94036b0..1d43570 100644 --- a/src/telepathy/client_interface_requests.rs +++ b/src/telepathy/client_interface_requests.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client_Interface_Requests.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client_interface_requests.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/client_observer.rs b/src/telepathy/client_observer.rs index ce85466..d275cfc 100644 --- a/src/telepathy/client_observer.rs +++ b/src/telepathy/client_observer.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Client_Observer.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/client_observer.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection.rs b/src/telepathy/connection.rs index 420baad..7cb2114 100644 --- a/src/telepathy/connection.rs +++ b/src/telepathy/connection.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_addressing.rs b/src/telepathy/connection_interface_addressing.rs index cd85308..dbef120 100644 --- a/src/telepathy/connection_interface_addressing.rs +++ b/src/telepathy/connection_interface_addressing.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Addressing.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_addressing.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_aliasing.rs b/src/telepathy/connection_interface_aliasing.rs index ce33e40..f9fdc62 100644 --- a/src/telepathy/connection_interface_aliasing.rs +++ b/src/telepathy/connection_interface_aliasing.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Aliasing.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_aliasing.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_anonymity.rs b/src/telepathy/connection_interface_anonymity.rs index 45a8dfe..1fcc038 100644 --- a/src/telepathy/connection_interface_anonymity.rs +++ b/src/telepathy/connection_interface_anonymity.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Anonymity.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_anonymity.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_avatars.rs b/src/telepathy/connection_interface_avatars.rs index 7a0fa18..d54ee69 100644 --- a/src/telepathy/connection_interface_avatars.rs +++ b/src/telepathy/connection_interface_avatars.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Avatars.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_avatars.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_balance.rs b/src/telepathy/connection_interface_balance.rs index 272e193..f3696f1 100644 --- a/src/telepathy/connection_interface_balance.rs +++ b/src/telepathy/connection_interface_balance.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Balance.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_balance.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_capabilities.rs b/src/telepathy/connection_interface_capabilities.rs index a509849..073eab4 100644 --- a/src/telepathy/connection_interface_capabilities.rs +++ b/src/telepathy/connection_interface_capabilities.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Capabilities.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_capabilities.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_cellular.rs b/src/telepathy/connection_interface_cellular.rs index 6f1d083..7d3efca 100644 --- a/src/telepathy/connection_interface_cellular.rs +++ b/src/telepathy/connection_interface_cellular.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Cellular.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_cellular.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_client_types.rs b/src/telepathy/connection_interface_client_types.rs index f792627..10bde89 100644 --- a/src/telepathy/connection_interface_client_types.rs +++ b/src/telepathy/connection_interface_client_types.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Client_Types.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_client_types.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_communication_policy.rs b/src/telepathy/connection_interface_communication_policy.rs index 4581ba6..571520c 100644 --- a/src/telepathy/connection_interface_communication_policy.rs +++ b/src/telepathy/connection_interface_communication_policy.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Communication_Policy.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_communication_policy.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contact_blocking.rs b/src/telepathy/connection_interface_contact_blocking.rs index 9d6ee52..3a5bd56 100644 --- a/src/telepathy/connection_interface_contact_blocking.rs +++ b/src/telepathy/connection_interface_contact_blocking.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contact_Blocking.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contact_blocking.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contact_capabilities.rs b/src/telepathy/connection_interface_contact_capabilities.rs index 48b0b80..480802c 100644 --- a/src/telepathy/connection_interface_contact_capabilities.rs +++ b/src/telepathy/connection_interface_contact_capabilities.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contact_Capabilities.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contact_capabilities.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contact_groups.rs b/src/telepathy/connection_interface_contact_groups.rs index 7471d05..f47b628 100644 --- a/src/telepathy/connection_interface_contact_groups.rs +++ b/src/telepathy/connection_interface_contact_groups.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contact_Groups.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contact_groups.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contact_info.rs b/src/telepathy/connection_interface_contact_info.rs index b00a292..fb5050b 100644 --- a/src/telepathy/connection_interface_contact_info.rs +++ b/src/telepathy/connection_interface_contact_info.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contact_Info.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contact_info.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contact_list.rs b/src/telepathy/connection_interface_contact_list.rs index 26b1223..6b35ffb 100644 --- a/src/telepathy/connection_interface_contact_list.rs +++ b/src/telepathy/connection_interface_contact_list.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contact_List.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contact_list.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_contacts.rs b/src/telepathy/connection_interface_contacts.rs index f0c7741..dfa6f32 100644 --- a/src/telepathy/connection_interface_contacts.rs +++ b/src/telepathy/connection_interface_contacts.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Contacts.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_contacts.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_forwarding.rs b/src/telepathy/connection_interface_forwarding.rs index 26ac273..26ac23d 100644 --- a/src/telepathy/connection_interface_forwarding.rs +++ b/src/telepathy/connection_interface_forwarding.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Forwarding.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_forwarding.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_irc_command1.rs b/src/telepathy/connection_interface_irc_command1.rs index 87f7ee3..83793e3 100644 --- a/src/telepathy/connection_interface_irc_command1.rs +++ b/src/telepathy/connection_interface_irc_command1.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_IRC_Command1.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_irc_command1.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_keepalive.rs b/src/telepathy/connection_interface_keepalive.rs index 72d4646..55c5bff 100644 --- a/src/telepathy/connection_interface_keepalive.rs +++ b/src/telepathy/connection_interface_keepalive.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Keepalive.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_keepalive.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_location.rs b/src/telepathy/connection_interface_location.rs index 83f8637..a7c42e2 100644 --- a/src/telepathy/connection_interface_location.rs +++ b/src/telepathy/connection_interface_location.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Location.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_location.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_mail_notification.rs b/src/telepathy/connection_interface_mail_notification.rs index c0e1fb6..7a39da8 100644 --- a/src/telepathy/connection_interface_mail_notification.rs +++ b/src/telepathy/connection_interface_mail_notification.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Mail_Notification.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_mail_notification.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_power_saving.rs b/src/telepathy/connection_interface_power_saving.rs index 698fb12..2153abd 100644 --- a/src/telepathy/connection_interface_power_saving.rs +++ b/src/telepathy/connection_interface_power_saving.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Power_Saving.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_power_saving.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_presence.rs b/src/telepathy/connection_interface_presence.rs index 78c946b..406b61b 100644 --- a/src/telepathy/connection_interface_presence.rs +++ b/src/telepathy/connection_interface_presence.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Presence.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_presence.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_privacy.rs b/src/telepathy/connection_interface_privacy.rs index 076b0cd..ff48d72 100644 --- a/src/telepathy/connection_interface_privacy.rs +++ b/src/telepathy/connection_interface_privacy.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Privacy.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_privacy.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_renaming.rs b/src/telepathy/connection_interface_renaming.rs index d98f473..e727b66 100644 --- a/src/telepathy/connection_interface_renaming.rs +++ b/src/telepathy/connection_interface_renaming.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Renaming.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_renaming.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_requests.rs b/src/telepathy/connection_interface_requests.rs index c25924d..f9517b4 100644 --- a/src/telepathy/connection_interface_requests.rs +++ b/src/telepathy/connection_interface_requests.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Requests.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_requests.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_resources.rs b/src/telepathy/connection_interface_resources.rs index 6c8bf39..7cbdf88 100644 --- a/src/telepathy/connection_interface_resources.rs +++ b/src/telepathy/connection_interface_resources.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Resources.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_resources.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_service_point.rs b/src/telepathy/connection_interface_service_point.rs index 4e2ca3c..f78d61b 100644 --- a/src/telepathy/connection_interface_service_point.rs +++ b/src/telepathy/connection_interface_service_point.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Service_Point.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_service_point.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_sidecars1.rs b/src/telepathy/connection_interface_sidecars1.rs index f225b78..2847895 100644 --- a/src/telepathy/connection_interface_sidecars1.rs +++ b/src/telepathy/connection_interface_sidecars1.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Sidecars1.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_sidecars1.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_interface_simple_presence.rs b/src/telepathy/connection_interface_simple_presence.rs index 7ab17df..8235fcf 100644 --- a/src/telepathy/connection_interface_simple_presence.rs +++ b/src/telepathy/connection_interface_simple_presence.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Interface_Simple_Presence.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_interface_simple_presence.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_manager.rs b/src/telepathy/connection_manager.rs index 3836d9b..bb552e2 100644 --- a/src/telepathy/connection_manager.rs +++ b/src/telepathy/connection_manager.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Manager.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_manager.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/connection_manager_interface_account_storage.rs b/src/telepathy/connection_manager_interface_account_storage.rs index 3ba7b8b..351c671 100644 --- a/src/telepathy/connection_manager_interface_account_storage.rs +++ b/src/telepathy/connection_manager_interface_account_storage.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Connection_Manager_Interface_Account_Storage.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/connection_manager_interface_account_storage.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/debug.rs b/src/telepathy/debug.rs index b0d2b52..22660b6 100644 --- a/src/telepathy/debug.rs +++ b/src/telepathy/debug.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Debug.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/debug.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/errors.rs b/src/telepathy/errors.rs index e5b8b9a..b805054 100644 --- a/src/telepathy/errors.rs +++ b/src/telepathy/errors.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/errors.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/errors.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/generic_types.rs b/src/telepathy/generic_types.rs index 831d32a..006b92e 100644 --- a/src/telepathy/generic_types.rs +++ b/src/telepathy/generic_types.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/generic-types.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/generic_types.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/media_session_handler.rs b/src/telepathy/media_session_handler.rs index 9b1433a..968c0bc 100644 --- a/src/telepathy/media_session_handler.rs +++ b/src/telepathy/media_session_handler.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Media_Session_Handler.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/media_session_handler.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/media_stream_handler.rs b/src/telepathy/media_stream_handler.rs index c1ad7b8..08cb14a 100644 --- a/src/telepathy/media_stream_handler.rs +++ b/src/telepathy/media_stream_handler.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Media_Stream_Handler.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/media_stream_handler.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/properties_interface.rs b/src/telepathy/properties_interface.rs index 64bae24..1724a0b 100644 --- a/src/telepathy/properties_interface.rs +++ b/src/telepathy/properties_interface.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Properties_Interface.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/properties_interface.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/protocol.rs b/src/telepathy/protocol.rs index 8b4650c..4a64534 100644 --- a/src/telepathy/protocol.rs +++ b/src/telepathy/protocol.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Protocol.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/protocol.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/protocol_interface_addressing.rs b/src/telepathy/protocol_interface_addressing.rs index cf7ad2a..29bd1ac 100644 --- a/src/telepathy/protocol_interface_addressing.rs +++ b/src/telepathy/protocol_interface_addressing.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Protocol_Interface_Addressing.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/protocol_interface_addressing.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/protocol_interface_avatars.rs b/src/telepathy/protocol_interface_avatars.rs index aaa1de7..4e5be23 100644 --- a/src/telepathy/protocol_interface_avatars.rs +++ b/src/telepathy/protocol_interface_avatars.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Protocol_Interface_Avatars.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/protocol_interface_avatars.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/protocol_interface_presence.rs b/src/telepathy/protocol_interface_presence.rs index eb53c1a..bc5cc43 100644 --- a/src/telepathy/protocol_interface_presence.rs +++ b/src/telepathy/protocol_interface_presence.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/Protocol_Interface_Presence.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/protocol_interface_presence.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg; diff --git a/src/telepathy/template.rs b/src/telepathy/template.rs index 855fae7..dbebe68 100644 --- a/src/telepathy/template.rs +++ b/src/telepathy/template.rs @@ -1,3 +1,5 @@ +#![allow(clippy::all)] + // This code was autogenerated with `dbus-codegen-rust --file telepathy-spec/spec/template.xml -i org.freedesktop.Telepathy -a AsRefClosure -o src/telepathy/template.rs`, see https://github.com/diwic/dbus-rs use dbus; use dbus::arg;