diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-02 23:01:56 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-03-02 23:01:56 +0100 |
commit | 17142bd687ac2af7c325c7c3617937c56a4ca58d (patch) | |
tree | ff686d58294e39e70d6815fb937a9de35080e9bf /src/dav/encoder.rs | |
parent | 61ee5f153b01c8a0927f0e4547c8c655ede912ed (diff) | |
download | aerogramme-17142bd687ac2af7c325c7c3617937c56a4ca58d.tar.gz aerogramme-17142bd687ac2af7c325c7c3617937c56a4ca58d.zip |
WIP encoding
Diffstat (limited to 'src/dav/encoder.rs')
-rw-r--r-- | src/dav/encoder.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dav/encoder.rs b/src/dav/encoder.rs index f842734..7778d61 100644 --- a/src/dav/encoder.rs +++ b/src/dav/encoder.rs @@ -37,16 +37,16 @@ impl Context for NoExtension { } start } - async fn hook_error(&self, err: &Disabled, xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { + async fn hook_error(&self, _err: &Disabled, _xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { unreachable!(); } - async fn hook_property(&self, prop: &Disabled, xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { + async fn hook_property(&self, _prop: &Disabled, _xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { unreachable!(); } - async fn hook_propertyrequest(&self, prop: &Disabled, xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { + async fn hook_propertyrequest(&self, _prop: &Disabled, _xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { unreachable!(); } - async fn hook_resourcetype(&self, restype: &Disabled, xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { + async fn hook_resourcetype(&self, _restype: &Disabled, _xml: &mut Writer<impl AsyncWrite+Unpin>) -> Result<(), QError> { unreachable!(); } } |