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

use error::{LinkError, LinkErrorKind};
use link::{Link, Links};
use result::Result;

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

pub fn set_links(header: &mut EntryHeader, links: Links) -> Result<Links> {
    unimplemented!()
}

pub fn add_link(header: &mut EntryHeader, link: Link) -> Result<()> {
    unimplemented!()
}