summaryrefslogtreecommitdiffstats
path: root/libimaglink/src/external.rs
blob: d30dec0b53db99bb78eb39402455daf62db7640a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use libimagstore::store::EntryHeader;

use link::{Link, Links};
use result::Result;

pub fn get_link(header: &EntryHeader) -> Result<Link> {
    unimplemented!()
}

/// Set an external link in the header
///
/// Return the previous set link if there was any
pub fn set_link(header: &mut EntryHeader, l: Link) -> Option<Link> {
    unimplemented!()
}