pub type BrowseResult = Result<(Vec<ReferenceDescription>, Option<ContinuationPoint>)>;Expand description
Result type for browsing.
Aliased Type§
enum BrowseResult {
Ok((Vec<ReferenceDescription>, Option<ContinuationPoint>)),
Err(Error),
}Variants§
Ok((Vec<ReferenceDescription>, Option<ContinuationPoint>))
Contains the success value
Err(Error)
Contains the error value