From: Ian Jackson Date: Sun, 6 Dec 2020 01:30:25 +0000 (+0000) Subject: formatting, some from rustfmt (manually picked) X-Git-Tag: otter-0.2.0~230 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=bb97955497f6217d5a4bc199904eb38646671fc3;p=otter.git formatting, some from rustfmt (manually picked) Signed-off-by: Ian Jackson --- diff --git a/src/shapelib.rs b/src/shapelib.rs index 8691e35a..7b00c38d 100644 --- a/src/shapelib.rs +++ b/src/shapelib.rs @@ -165,8 +165,8 @@ pub struct ItemEnquiryData { #[typetag::serde(name="Lib")] impl Outline for Item { delegate! { to self.outline { - fn surround_path(&self, pri : &PieceRenderInstructions) -> Result; - fn thresh_dragraise(&self, pri : &PieceRenderInstructions) + fn surround_path(&self, pri: &PieceRenderInstructions) -> Result; + fn thresh_dragraise(&self, pri: &PieceRenderInstructions) -> Result, IE>; fn bbox_approx(&self) -> [Pos; 2]; }}}