From: Ian Jackson Date: Fri, 21 May 2021 19:40:35 +0000 (+0100) Subject: apitest: Remove some Sized foolishness X-Git-Tag: otter-0.6.0~90 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6db0f76052d0a4ba403b748d09fc5d58084ae51c;p=otter.git apitest: Remove some Sized foolishness Signed-off-by: Ian Jackson --- diff --git a/apitest/apitest.rs b/apitest/apitest.rs index d0f30a3e..26cfdf64 100644 --- a/apitest/apitest.rs +++ b/apitest/apitest.rs @@ -161,8 +161,7 @@ pub trait Substitutor { } #[throws(AE)] - fn gss(&self, s: &str) -> Vec - where Self: Sized { + fn gss(&self, s: &str) -> Vec { self.ss(&format!("-g @table@ {}", s))? } }