Skip to content

pantoken / platforms/rust/src / toRust

Fungsi: toRust()

toRust(tokens, options?): string

Eksperimental

Menghasilkan konstanta Rust untuk IR token yang eksplisit.

Parameter

tokens

hanya-baca Token[]

IR.

options?

RustOptions = {}

RustOptions.

Mengembalikan

string

Sumber Rust (sebuah modul dari pub consts).

Contoh

egui (Color32), format bawaan

ts
import { toRust } from "@pantoken/rust";
import { byTheme } from "@pantoken/tokens";

const source = toRust(byTheme("rebrand"));
// "use egui::Color32;\npub const COLOR_BACKGROUND_BRAND: Color32 = Color32::from_rgb(…);"

iced (Color), mode gelap

ts
import { toRust } from "@pantoken/rust";
import { byTheme } from "@pantoken/tokens";

const source = toRust(byTheme("rebrand"), { format: "iced", mode: "dark" });
// "use iced::Color;\npub const COLOR_BACKGROUND_BRAND: Color = Color { r: …, g: …, b: …, a: … };"