From 5693d84c79c5a460582f8c1563889970471eebf4 Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 8 Apr 2023 22:30:45 -0300 Subject: More clean up --- src/graph.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/graph.rs') diff --git a/src/graph.rs b/src/graph.rs index 47d6523..c95cf34 100644 --- a/src/graph.rs +++ b/src/graph.rs @@ -8,19 +8,20 @@ use serde::de::Deserialize; use crate::vm::MAX_CALLS; use crate::vm::Pack; use crate::vm::Unpacker; -use crate::errors::QueryError; +use crate::errors::UnpackError; // TODO in the future, we may want to store &'pat IndexSet either here // or in the Pack. +/// Match results. Produced by matching a `Pattern` against a `Deserializer`. #[derive(Debug)] pub struct Graph<'pat, 'de>(pub(crate) Option>); impl<'pat, 'de> Graph<'pat, 'de> { /// Collect this graph into a given form. - pub fn collect>(self) -> Result { + pub fn collect>(self) -> Result { let Self(inner) = self; match inner { - None => Err(QueryError::Empty), + None => Err(UnpackError::Empty), Some(pack) => { let mut unpacker = Unpacker::new(pack, MAX_CALLS); De::deserialize(unpacker) -- cgit 1.4.1