We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad6a5b commit 8b83e0fCopy full SHA for 8b83e0f
crates/ltk_ritobin/src/typecheck/name_ext.rs
@@ -1,11 +1,11 @@
1
-use ltk_meta::BinPropertyKind;
+use ltk_meta::PropertyKind;
2
3
pub trait RitobinName: Sized {
4
fn from_ritobin_name(name: &str) -> Option<Self>;
5
fn to_ritobin_name(self) -> &'static str;
6
}
7
8
-impl RitobinName for BinPropertyKind {
+impl RitobinName for PropertyKind {
9
fn from_ritobin_name(name: &str) -> Option<Self> {
10
match name {
11
"none" => Some(Self::None),
0 commit comments