Use transpose in a couple places

This commit is contained in:
asonix 2023-02-05 20:50:59 -06:00
parent cc75d2d882
commit 138499d47f
1 changed files with 9 additions and 15 deletions

View File

@ -546,11 +546,9 @@ impl IdentifierRepo for SledRepo {
let opt = b!(self.identifier_details, identifier_details.get(key)); let opt = b!(self.identifier_details, identifier_details.get(key));
if let Some(ivec) = opt { opt.map(|ivec| serde_json::from_slice(&ivec))
Ok(Some(serde_json::from_slice(&ivec)?)) .transpose()
} else { .map_err(Error::from)
Ok(None)
}
} }
#[tracing::instrument(level = "trace", skip(self, identifier), fields(identifier = identifier.string_repr()))] #[tracing::instrument(level = "trace", skip(self, identifier), fields(identifier = identifier.string_repr()))]
@ -682,11 +680,9 @@ impl HashRepo for SledRepo {
hash_variant_identifiers.get(key) hash_variant_identifiers.get(key)
); );
if let Some(ivec) = opt { opt.map(|ivec| I::from_bytes(ivec.to_vec()))
Ok(Some(I::from_bytes(ivec.to_vec())?)) .transpose()
} else { .map_err(Error::from)
Ok(None)
}
} }
#[tracing::instrument(skip(self, hash), fields(hash = hex::encode(&hash)))] #[tracing::instrument(skip(self, hash), fields(hash = hex::encode(&hash)))]
@ -759,11 +755,9 @@ impl HashRepo for SledRepo {
hash_motion_identifiers.get(hash) hash_motion_identifiers.get(hash)
); );
if let Some(ivec) = opt { opt.map(|ivec| I::from_bytes(ivec.to_vec()))
Ok(Some(I::from_bytes(ivec.to_vec())?)) .transpose()
} else { .map_err(Error::from)
Ok(None)
}
} }
#[tracing::instrument(skip(self, hash), fields(hash = hex::encode(&hash)))] #[tracing::instrument(skip(self, hash), fields(hash = hex::encode(&hash)))]