1 2 3 4 5 6 7 8
#[derive(Debug)] pub(crate) struct SelSyntax(pub(crate) String); impl SelSyntax { pub(crate) fn new(cand: String) -> Option<Self> { Some(Self(cand)) } }