/
germanubis
/
sqlx
Обзор
Документация
Войти
/
germanubis
/
sqlx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sqlx-postgres/src/types/uuid.rs
37 строк
969 B
Max Bruckner
Make Encode return a result (#3126)
31 май 2024, 22:42
Не верифицирован
31 май 2024, 22:42
c57b46c
Код
Авторство
О чём код?
use uuid::Uuid; use crate::decode::Decode; use crate::encode::{Encode, IsNull}; use crate::error::BoxDynError; use crate::types::Type; use crate::{PgArgumentBuffer, PgHasArrayType, PgTypeInfo, PgValueFormat, PgValueRef, Postgres}; impl Type<Postgres> for Uuid { fn type_info() -> PgTypeInfo { PgTypeInfo::UUID } } impl PgHasArrayType for Uuid { fn array_type_info() -> PgTypeInfo { PgTypeInfo::UUID_ARRAY } } impl Encode<'_, Postgres> for Uuid { fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> Result<IsNull, BoxDynError> { buf.extend_from_slice(self.as_bytes()); Ok(IsNull::No) } } impl Decode<'_, Postgres> for Uuid { fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError> { match value.format() { PgValueFormat::Binary => Uuid::from_slice(value.as_bytes()?), PgValueFormat::Text => value.as_str()?.parse(), } .map_err(Into::into) } }