1
2
3
4
5
6
7
#[derive(Debug, PartialEq, Eq)]
pub enum Target {
    /// Redirect specified as a URL index
    Redirect(u32),
    /// Cluster index and blob index
    Cluster(u32, u32),
}