link-cli 0.2.0

A CLI tool for links manipulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::hybrid_reference::external_reference;

#[derive(Clone, Copy, Debug, Default)]
pub struct AddressToRawNumberConverter;

impl AddressToRawNumberConverter {
    pub fn new() -> Self {
        Self
    }

    pub fn convert(&self, address: u32) -> u32 {
        external_reference(address)
    }
}