Type Alias MirrorResult

Source
type MirrorResult = Result<(Option<Box<dyn Transport + Send>>, <Vec<UnpackedRef<ObjectId, Root>> as IntoIterator>::IntoIter, Root, Tag, Url), Box<dyn Error + Send + Sync>>;

Aliased Type§

enum MirrorResult {
    Ok((Option<Box<dyn Transport + Send>>, IntoIter<UnpackedRef<ObjectId, Root>>, Root, Tag, Url)),
    Err(Box<dyn Error + Sync + Send>),
}

Variants§

§1.0.0

Ok((Option<Box<dyn Transport + Send>>, IntoIter<UnpackedRef<ObjectId, Root>>, Root, Tag, Url))

Contains the success value

§1.0.0

Err(Box<dyn Error + Sync + Send>)

Contains the error value