1
0
Fork 0
forked from wry/wry

Merge pull request #774 from mahkoh/jorth/clippy-3

all: fix clippy lints
This commit is contained in:
mahkoh 2026-03-05 21:34:53 +01:00 committed by GitHub
commit c689bc37b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -483,7 +483,7 @@ pub unsafe trait DbusType<'a>: Clone + 'a {
type Generic<'b>: DbusType<'b> + 'b;
fn consume_signature(s: &mut &[u8]) -> Result<(), DbusError>;
#[expect(dead_code)]
#[allow(clippy::allow_attributes, dead_code)]
fn write_signature(w: &mut Vec<u8>);
fn marshal(&self, fmt: &mut Formatter);
fn unmarshal(parser: &mut Parser<'a>) -> Result<Self, DbusError>;