mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
20 lines
762 B
Rust
20 lines
762 B
Rust
use api::general_capnp::u_u_i_d::{Builder, Reader};
|
|
use uuid::Uuid;
|
|
|
|
pub fn uuid_to_api(uuid: Uuid, mut builder: Builder) {
|
|
let [a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p] = uuid.as_u128().to_ne_bytes();
|
|
let lower = u64::from_ne_bytes([a, b, c, d, e, f, g, h]);
|
|
let upper = u64::from_ne_bytes([i, j, k, l, m, n, o, p]);
|
|
builder.set_uuid0(lower);
|
|
builder.set_uuid1(upper);
|
|
}
|
|
|
|
pub fn api_to_uuid(reader: Reader) -> Uuid {
|
|
let lower: u64 = reader.reborrow().get_uuid0();
|
|
let upper: u64 = reader.get_uuid1();
|
|
let [a, b, c, d, e, f, g, h] = lower.to_ne_bytes();
|
|
let [i, j, k, l, m, n, o, p] = upper.to_ne_bytes();
|
|
let num = u128::from_ne_bytes([a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p]);
|
|
Uuid::from_u128(num)
|
|
}
|