(&'b self, out: &mut serialize::Output<'b, '_, Pg>)
| 137 | #[cfg(feature = "postgres")] |
| 138 | impl serialize::ToSql<Text, Pg> for DevAddrPrefix { |
| 139 | fn to_sql<'b>(&'b self, out: &mut serialize::Output<'b, '_, Pg>) -> serialize::Result { |
| 140 | <String as serialize::ToSql<Text, Pg>>::to_sql(&self.to_string(), &mut out.reborrow()) |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | #[cfg(feature = "sqlite")] |
nothing calls this directly
no test coverage detected